-
Notifications
You must be signed in to change notification settings - Fork 0
/
mocha.test.config.js
36 lines (34 loc) · 1.01 KB
/
mocha.test.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
*
* Package:
* Author: Ganesh B
* Description: Nodejs npm module to traverse folder using code or cli or use glob patterns
* Install: npm i traverse-fs, npm i fssys
* Github: https://github.com/ganeshkbhat/glob-traverse-fs
* npmjs Link:
* File: mocha.test.config.js
* File Description: Test config file for mocha for Traversing and searching files in a directory
*
*/
/* eslint no-console: 0 */
'use strict';
module.exports = {
spec: [
'./test/*.test.js',
'./test/**/*.test.js',
'./test/**/**/*.test.js',
'./test/**/**/**/*.test.js',
'./test/test.*.js',
'./test/**/test.*.js',
'./test/**/**/test.*.js',
'./test/**/**/**/test.*.js',
'./test/*.test.mjs',
'./test/**/*.test.mjs',
'./test/**/**/*.test.mjs',
'./test/**/**/**/*.test.mjs',
'./test/test.*.mjs',
'./test/**/test.*.mjs',
'./test/**/**/test.*.mjs',
'./test/**/**/**/test.*.mjs',
],
};