Skip to content

Commit a9a678b

Browse files
authored
fix(gulp): fix path to unit tests for "gulp test" task [triage-skip] (#7)
1 parent 9e7a5c0 commit a9a678b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulp/tasks/dev.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ require('./test');
2222
function watchDevFiles() {
2323
const stream = gulp.watch([
2424
`${config.root}/src/**/*.ts`,
25-
`${config.root}/tests/unit/**/*`,
25+
config.paths.test.unit
2626
], gulp.parallel('test:unit'));
2727

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

0 commit comments

Comments
 (0)