Skip to content

Commit f4bebe5

Browse files
committed
chore: simplify test command
1 parent e619f28 commit f4bebe5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

addon/ng2/commands/test.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@ module.exports = TestCommand.extend({
3636
() => {
3737
/* handle build error to allow watch mode to start */
3838
})
39-
.then(() => {
40-
return Promise.all([testTask.run(commandOptions)]);
41-
});
39+
.then(() => testTask.run(commandOptions));
4240
} else {
4341
// if not watching ensure karma is doing a single run
4442
commandOptions.singleRun = true;

0 commit comments

Comments
 (0)