From 9d434b810529b6357b7628cd969ea61bbfd5353b Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Thu, 8 Dec 2022 11:27:21 +0000 Subject: [PATCH] Removed errant `page.pause()` --- ghost/core/test/e2e-browser/admin/publishing.spec.js | 1 - 1 file changed, 1 deletion(-) diff --git a/ghost/core/test/e2e-browser/admin/publishing.spec.js b/ghost/core/test/e2e-browser/admin/publishing.spec.js index 5b906a1cce..33eaeb69e8 100644 --- a/ghost/core/test/e2e-browser/admin/publishing.spec.js +++ b/ghost/core/test/e2e-browser/admin/publishing.spec.js @@ -177,7 +177,6 @@ test.describe('Publishing', () => { await createPost(adminPage, {title: 'Testing publish update', body: 'This is the initial published text.'}); const frontendPage = await publishPost(adminPage); - await frontendPage.pause(); const frontendBody = frontendPage.locator('main > article > section > p'); const frontendHeader = frontendPage.locator('main > article > header');