* Increase timeout for explore.e2e.spec test * fix: test cases and timeout --------- Co-authored-by: Hien To <tominhhien97@gmail.com> Co-authored-by: Louis <louis@jan.ai>
10 lines
182 B
TypeScript
10 lines
182 B
TypeScript
import { PlaywrightTestConfig } from '@playwright/test'
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
testDir: './tests',
|
|
retries: 0,
|
|
globalTimeout: 300000,
|
|
}
|
|
|
|
export default config
|