UNPKG

617 BPlain TextView Raw
1export const config = {
2 specs: ['./test/functional/*.test.ts', './test/integration/*.test.ts'],
3 logLevel: 'warn',
4 baseUrl: 'http://snowplow-js-tracker.local:8080',
5 waitforTimeout: 30000,
6 connectionRetryTimeout: 120000,
7 connectionRetryCount: 3,
8 specFileRetries: 2,
9 specFileRetriesDelay: 60, // Delay in seconds between the spec file retry attempts
10 specFileRetriesDeferred: false, // Defer retries to the end of the queue
11 maxInstances: 5, // Maximum number of total parallel running workers
12 framework: 'jasmine',
13 reporters: ['spec'],
14 jasmineOpts: {
15 defaultTimeoutInterval: 120000,
16 },
17};