test: increase e2e tests timeout
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import path from 'path'
|
||||
import { setupPuppeteer } from './e2eUtils'
|
||||
import { setupPuppeteer, E2E_TIMEOUT } from './e2eUtils'
|
||||
|
||||
interface TableData {
|
||||
name: string
|
||||
@@ -103,11 +103,19 @@ describe('e2e: grid', () => {
|
||||
expect(await count('p')).toBe(1)
|
||||
}
|
||||
|
||||
test('classic', async () => {
|
||||
await testGrid('classic')
|
||||
})
|
||||
test(
|
||||
'classic',
|
||||
async () => {
|
||||
await testGrid('classic')
|
||||
},
|
||||
E2E_TIMEOUT
|
||||
)
|
||||
|
||||
test('composition', async () => {
|
||||
await testGrid('composition')
|
||||
})
|
||||
test(
|
||||
'composition',
|
||||
async () => {
|
||||
await testGrid('composition')
|
||||
},
|
||||
E2E_TIMEOUT
|
||||
)
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user