Skip to content

Commit

Permalink
test: forgot to revert globby code change
Browse files Browse the repository at this point in the history
  • Loading branch information
malept committed Jul 23, 2021
1 parent 2165b60 commit 4fadec7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/test-globber.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint "global-require": "off", "import/no-dynamic-require": "off" */
import { globbySync } from 'globby';
import globby from 'globby';
import minimist from 'minimist';
import * as path from 'path';

Expand Down Expand Up @@ -36,7 +36,7 @@ for (const p of packages) {
if (argv.integration === false || process.env.INTEGRATION_TESTS === '0') {
specGlob.push(`!${apiSpec}`);
}
testFiles.push(...globbySync(specGlob));
testFiles.push(...globby.sync(specGlob));
}

for (const f of testFiles) {
Expand Down

0 comments on commit 4fadec7

Please sign in to comment.