-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate change-detection
to Playwright
#58767
Merged
Merged
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
06cfa59
Migrate change-detection to Playwright
kevin940726 4162963
Do not retry page.reload
kevin940726 a05a995
Only resolve 'hasDialog' to true for the 'beforeunload' type
Mamaduka 7ad27c8
Update the initial block creation method to avoid flakiness
Mamaduka a23241e
Fix route interception
Mamaduka File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,11 @@ const test = base.extend( { | |
}, | ||
} ); | ||
|
||
const POST_URLS = [ | ||
'/wp/v2/posts', | ||
`rest_route=${ encodeURIComponent( '/wp/v2/posts' ) }`, | ||
]; | ||
|
||
test.describe( 'Change detection', () => { | ||
test.beforeEach( async ( { admin } ) => { | ||
await admin.createNewPost(); | ||
|
@@ -276,7 +281,6 @@ test.describe( 'Change detection', () => { | |
} ); | ||
|
||
test( 'Should prompt if changes made while save is in-flight', async ( { | ||
page, | ||
editor, | ||
pageUtils, | ||
changeDetectionUtils, | ||
|
@@ -295,12 +299,7 @@ test.describe( 'Change detection', () => { | |
|
||
await editor.canvas | ||
.getByRole( 'textbox', { name: 'Add title' } ) | ||
.type( '!' ); | ||
await expect( | ||
page | ||
.getByRole( 'region', { name: 'Editor top bar' } ) | ||
.getByRole( 'button', { name: 'Save draft' } ) | ||
).toBeEnabled(); | ||
.fill( 'Hello World!' ); | ||
|
||
await changeDetectionUtils.releaseSaveIntercept(); | ||
|
||
|
@@ -539,18 +538,24 @@ class ChangeDetectionUtils { | |
this.#continueInterceptedSave = res; | ||
} ); | ||
|
||
await this.#page.route( '**/wp/v2/posts', async ( route ) => { | ||
hadInterceptedSave = true; | ||
await deferred; | ||
await route.continue(); | ||
} ); | ||
await this.#page.route( | ||
( url ) => | ||
POST_URLS.some( ( postUrl ) => url.href.includes( postUrl ) ), | ||
Comment on lines
+542
to
+543
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
async ( route ) => { | ||
hadInterceptedSave = true; | ||
await deferred; | ||
await route.continue(); | ||
} | ||
); | ||
|
||
return () => hadInterceptedSave; | ||
}; | ||
|
||
releaseSaveIntercept = async () => { | ||
this.#continueInterceptedSave?.(); | ||
await this.#page.unroute( '**/wp/v2/posts' ); | ||
await this.#page.unroute( ( url ) => | ||
POST_URLS.some( ( postUrl ) => url.href.includes( postUrl ) ) | ||
); | ||
this.#continueInterceptedSave = null; | ||
}; | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The button isn't restored when making changes in flight. I'm not sure if this is a regression. The behavior can be reproduced manually by throttling the network via DevTools.