mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-18 13:26:24 +00:00
23b07f8a41
Change-type: patch
11 lines
322 B
JavaScript
11 lines
322 B
JavaScript
module.exports = {
|
|
reporter: 'spec',
|
|
require: 'ts-node/register/transpile-only',
|
|
file: './tests/config-tests',
|
|
timeout: 12000,
|
|
// To test only, say, 'push.spec.ts', do it as follows so that
|
|
// requests are authenticated:
|
|
// spec: ['tests/auth/*.spec.ts', 'tests/**/deploy.spec.ts'],
|
|
spec: 'tests/**/*.spec.ts',
|
|
};
|