From 6d16334b4fa5f46fc87ea22f81ba51a9d77c4566 Mon Sep 17 00:00:00 2001 From: tleish Date: Sun, 23 Jun 2024 19:22:15 -0600 Subject: [PATCH] fix #1241 - cache current page with frame updated --- src/tests/functional/frame_navigation_tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/functional/frame_navigation_tests.js b/src/tests/functional/frame_navigation_tests.js index d4d3cbf51..f0c3b3901 100644 --- a/src/tests/functional/frame_navigation_tests.js +++ b/src/tests/functional/frame_navigation_tests.js @@ -117,7 +117,7 @@ test("promoted frame navigations are cached", async ({ page }) => { assert.equal(await page.textContent("#tab-content"), "Two") assert.equal(pathname((await page.getAttribute("#tab-frame", "src")) || ""), "/src/tests/fixtures/tabs/two.html") assert.equal(await page.getAttribute("#tab-frame", "complete"), "", "caches two.html with [complete]") - + await page.goBack() await nextEventNamed(page, "turbo:load")