mirror of
https://github.com/block/goose.git
synced 2026-08-23 23:36:38 +00:00
Some checks failed
Canary / Prepare Version (push) Waiting to run
Canary / build-cli (push) Blocked by required conditions
Canary / Upload Install Script (push) Blocked by required conditions
Canary / bundle-desktop (push) Blocked by required conditions
Canary / bundle-desktop-linux (push) Blocked by required conditions
Canary / bundle-desktop-windows (push) Blocked by required conditions
Canary / Release (push) Blocked by required conditions
CI / Build and Test Rust Project (push) Blocked by required conditions
CI / Lint Rust Code (push) Blocked by required conditions
CI / Check OpenAPI Schema is Up-to-Date (push) Blocked by required conditions
CI / Test and Lint Electron Desktop App (push) Blocked by required conditions
CI / changes (push) Waiting to run
CI / Check Rust Code Format (push) Blocked by required conditions
Live Provider Tests / check-fork (push) Waiting to run
Live Provider Tests / changes (push) Blocked by required conditions
Live Provider Tests / Build Release Binary (push) Blocked by required conditions
Live Provider Tests / Smoke Tests (push) Blocked by required conditions
Live Provider Tests / Smoke Tests (Code Execution) (push) Blocked by required conditions
Publish Docker Image / docker (push) Waiting to run
Scorecard supply-chain security / Scorecard analysis (push) Waiting to run
Documentation Site Preview / deploy (push) Has been cancelled
Documentation Site Preview / cleanup (push) Has been cancelled
26 lines
No EOL
508 B
TypeScript
26 lines
No EOL
508 B
TypeScript
import { PlaywrightTestConfig } from '@playwright/test';
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
testDir: './tests/e2e',
|
|
timeout: 60000,
|
|
expect: {
|
|
timeout: 30000
|
|
},
|
|
fullyParallel: false,
|
|
workers: 1,
|
|
reporter: [
|
|
['html'],
|
|
['list']
|
|
],
|
|
use: {
|
|
actionTimeout: 30000,
|
|
navigationTimeout: 30000,
|
|
trace: 'on-first-retry',
|
|
video: 'retain-on-failure',
|
|
screenshot: 'only-on-failure'
|
|
},
|
|
outputDir: 'test-results',
|
|
preserveOutput: 'always'
|
|
};
|
|
|
|
export default config; |