File tree 2 files changed +4
-4
lines changed
skeleton-typescript/build/tasks
skeleton-typescript-aspnetcore/src/skeleton/build/tasks
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ var Karma = require('karma').Server;
4
4
/**
5
5
* Run test once and exit
6
6
*/
7
- gulp . task ( 'test' , function ( done ) {
7
+ gulp . task ( 'test' , [ 'clean' ] , function ( done ) {
8
8
new Karma ( {
9
9
configFile : __dirname + '/../../karma.conf.js' ,
10
10
singleRun : true
@@ -14,7 +14,7 @@ gulp.task('test', function (done) {
14
14
/**
15
15
* Watch for file changes and re-run tests on each change
16
16
*/
17
- gulp . task ( 'tdd' , function ( done ) {
17
+ gulp . task ( 'tdd' , [ 'clean' ] , function ( done ) {
18
18
new Karma ( {
19
19
configFile : __dirname + '/../../karma.conf.js'
20
20
} , done ) . start ( ) ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ var Karma = require('karma').Server;
4
4
/**
5
5
* Run test once and exit
6
6
*/
7
- gulp . task ( 'test' , function ( done ) {
7
+ gulp . task ( 'test' , [ 'clean' ] , function ( done ) {
8
8
new Karma ( {
9
9
configFile : __dirname + '/../../karma.conf.js' ,
10
10
singleRun : true
@@ -14,7 +14,7 @@ gulp.task('test', function (done) {
14
14
/**
15
15
* Watch for file changes and re-run tests on each change
16
16
*/
17
- gulp . task ( 'tdd' , function ( done ) {
17
+ gulp . task ( 'tdd' , [ 'clean' ] , function ( done ) {
18
18
new Karma ( {
19
19
configFile : __dirname + '/../../karma.conf.js'
20
20
} , done ) . start ( ) ;
You can’t perform that action at this time.
0 commit comments