mirror of
https://github.com/RocketChat/Rocket.Chat.git
synced 2025-12-28 06:47:25 +00:00
16 lines
312 B
JavaScript
16 lines
312 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Mocha configuration for unit tests for type guards.
|
|
*/
|
|
|
|
const base = require('./.mocharc.base.json');
|
|
|
|
module.exports = {
|
|
...base, // see https://github.com/mochajs/mocha/issues/3916
|
|
require: [...base.require],
|
|
exit: false,
|
|
slow: 200,
|
|
spec: ['tests/unit/definition/**/*.spec.ts'],
|
|
};
|