Fix failed integration tests

This commit is contained in:
Pine Wu 2020-03-05 12:03:55 -08:00
parent ea2f6c6391
commit 0a36d4c82b
2 changed files with 2 additions and 2 deletions

View file

@ -42,7 +42,7 @@ export function run(): Promise<void> {
mocha.useColors(true);
}
const testsRoot = path.resolve(__dirname, '..');
const testsRoot = path.resolve(__dirname, '.');
return new Promise((c, e) => {
glob('**/**.test.js', { cwd: testsRoot }, (err, files) => {

View file

@ -42,7 +42,7 @@ export function run(): Promise<void> {
mocha.useColors(true);
}
const testsRoot = path.resolve(__dirname, '..');
const testsRoot = path.resolve(__dirname, '.');
return new Promise((c, e) => {
glob('**/**.test.js', { cwd: testsRoot }, (err, files) => {