Skip to content

Commit c6f2d3d

Browse files
Fixed a test that was failing because it accidentally detected the "dist" directory
1 parent 48ac309 commit c6f2d3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/specs/exports.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ chai.should();
1010

1111
const modules = [].concat(
1212
glob.sync("*.js"),
13-
glob.sync("*/*.js")
13+
glob.sync("*/*.js", { ignore: "dist/**" })
1414
);
1515

1616
describe("Module exports", function () {

0 commit comments

Comments
 (0)