mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-01-07 06:18:46 +00:00
14 lines
383 B
JavaScript
14 lines
383 B
JavaScript
|
module.exports = {
|
||
|
bail: true, // Exit test script on first error
|
||
|
exit: true, // Force Mocha to exit after tests complete
|
||
|
recursive: true, // Look for tests in subdirectories
|
||
|
require: [
|
||
|
// Files to execute before running suites
|
||
|
'ts-node/register/transpile-only',
|
||
|
'tsconfig-paths/register',
|
||
|
'test/lib/chai.ts',
|
||
|
],
|
||
|
spec: ['test/unit/**/*.spec.ts'],
|
||
|
timeout: '30000',
|
||
|
};
|