Skip to content

Commit

Permalink
fix(gulp): fix path to unit tests for "gulp test" task [triage-skip] (#7
Browse files Browse the repository at this point in the history
)
  • Loading branch information
jshcrowthe authored May 16, 2017
1 parent 9e7a5c0 commit a9a678b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulp/tasks/dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ require('./test');
function watchDevFiles() {
const stream = gulp.watch([
`${config.root}/src/**/*.ts`,
`${config.root}/tests/unit/**/*`,
config.paths.test.unit
], gulp.parallel('test:unit'));

stream.on('error', () => {});
Expand Down

1 comment on commit a9a678b

@jshcrowthe
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

EDIT: I actually meant the gulp dev task

Please sign in to comment.