summaryrefslogtreecommitdiffstats
path: root/devtools/shared/commands/target/tests/browser_target_command_bfcache.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/shared/commands/target/tests/browser_target_command_bfcache.js')
-rw-r--r--devtools/shared/commands/target/tests/browser_target_command_bfcache.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/devtools/shared/commands/target/tests/browser_target_command_bfcache.js b/devtools/shared/commands/target/tests/browser_target_command_bfcache.js
index c5ce76848e..03de5e3b5d 100644
--- a/devtools/shared/commands/target/tests/browser_target_command_bfcache.js
+++ b/devtools/shared/commands/target/tests/browser_target_command_bfcache.js
@@ -145,7 +145,12 @@ async function testTopLevelNavigations(bfcacheInParent) {
// Go back to the first page, this should be a bfcache navigation, and,
// we should get a new target
info("Go back to the first page");
+ const onPageShow = BrowserTestUtils.waitForContentEvent(
+ gBrowser.selectedBrowser,
+ "pageshow"
+ );
gBrowser.selectedBrowser.goBack();
+ await onPageShow;
await waitFor(
() => targets.length == 3,