Skip to content

Commit 9e7a5c0

Browse files
authored
fix(gulp): fix the gulp task "test:unit:node" (#5)
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.
1 parent fd07281 commit 9e7a5c0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

gulp/config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ module.exports = {
2929
unit: [
3030
'tests/**/*.test.ts',
3131
'!tests/**/browser/**/*.test.ts',
32+
'!tests/**/binary/**/*.test.ts',
3233
],
3334
binary: [
3435
'tests/**/binary/**/*.test.ts',

0 commit comments

Comments
 (0)