balena-supervisor/test/.mocharc.js

12 lines
331 B
JavaScript
Raw Normal View History

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
'build/test/config/fixtures.js',
],
spec: ['build/test/**/*.spec.js'],
timeout: '30000',
};