We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daf8061 commit 251fc68Copy full SHA for 251fc68
test/form-state/e2e.spec.ts
@@ -60,7 +60,11 @@ test.describe('Form State', () => {
60
})
61
62
test.beforeEach(async () => {
63
- // await throttleTest({ page, context, delay: 'Fast 3G' })
+ // await throttleTest({
64
+ // page,
65
+ // context,
66
+ // delay: 'Slow 4G',
67
+ // })
68
69
70
test('should disable fields during initialization', async () => {
@@ -237,6 +241,7 @@ test.describe('Form State', () => {
237
241
await page.route(postsUrl.create, async (route) => {
238
242
if (route.request().method() === 'POST' && route.request().url() === postsUrl.create) {
239
243
await route.abort()
244
+ return
240
245
}
246
247
await route.continue()
0 commit comments