Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion test/form-state/e2e.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ test.describe('Form State', () => {
})

test.beforeEach(async () => {
// await throttleTest({ page, context, delay: 'Fast 3G' })
// await throttleTest({
// page,
// context,
// delay: 'Slow 4G',
// })
})

test('should disable fields during initialization', async () => {
Expand Down Expand Up @@ -237,6 +241,7 @@ test.describe('Form State', () => {
await page.route(postsUrl.create, async (route) => {
if (route.request().method() === 'POST' && route.request().url() === postsUrl.create) {
await route.abort()
return
}

await route.continue()
Expand Down