Skip to content

Commit

Permalink
Fixed a test that was failing because it accidentally detected the "d…
Browse files Browse the repository at this point in the history
…ist" directory
  • Loading branch information
JamesMessinger committed Feb 9, 2020
1 parent 48ac309 commit c6f2d3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/specs/exports.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ chai.should();

const modules = [].concat(
glob.sync("*.js"),
glob.sync("*/*.js")
glob.sync("*/*.js", { ignore: "dist/**" })
);

describe("Module exports", function () {
Expand Down

0 comments on commit c6f2d3d

Please sign in to comment.