Skip to content

Commit

Permalink
fix(gulp): fix the gulp task "test:unit:node" (#5)
Browse files Browse the repository at this point in the history
There was an issue where the task "test:unit:node" was running tests that dependend on the
build artifact. This change ignores those tests as they are run in a different suite.
  • Loading branch information
jshcrowthe authored May 16, 2017
1 parent fd07281 commit 9e7a5c0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions gulp/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ module.exports = {
unit: [
'tests/**/*.test.ts',
'!tests/**/browser/**/*.test.ts',
'!tests/**/binary/**/*.test.ts',
],
binary: [
'tests/**/binary/**/*.test.ts',
Expand Down

0 comments on commit 9e7a5c0

Please sign in to comment.