diff --git a/src/test/suite/index.ts b/src/test/suite/index.ts index bd59606..c04b631 100644 --- a/src/test/suite/index.ts +++ b/src/test/suite/index.ts @@ -13,7 +13,7 @@ export function run(): Promise { const testsRoot = path.resolve(__dirname, '..'); return new Promise((c, e) => { - globSync('**/**.test.js', { cwd: testsRoot }).forEach( (file) => { + globSync('**/**.test.js', { cwd: testsRoot }).forEach(file => { mocha.addFile(path.resolve(testsRoot, file)); });