Skip to content

Commit e6a0405

Browse files
committed
chore: normalize test file path
1 parent a07a4f2 commit e6a0405

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = {
1818
overrides: [
1919
{
2020
files: [
21-
'test/tests.js'
21+
'test/**/*-test.js'
2222
],
2323
env: {
2424
mocha: true

.mocharc.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
'use strict';
22

33
module.exports = {
4-
spec: ['test/tests.js']
4+
spec: ['test/**/*-test.js'],
5+
6+
ignore: [
7+
'test/fixtures/**'
8+
]
59
};
File renamed without changes.

0 commit comments

Comments
 (0)