@@ -34,6 +34,8 @@ describe('[INTEGRATION] index', function () {
34
34
}
35
35
36
36
it ( 'should work without configuration' , function ( callback ) {
37
+ this . timeout ( 5000 ) ;
38
+
37
39
var compiler = createCompiler ( ) ;
38
40
39
41
compiler . run ( function ( err , stats ) {
@@ -43,6 +45,8 @@ describe('[INTEGRATION] index', function () {
43
45
} ) ;
44
46
45
47
it ( 'should block emit on build mode' , function ( callback ) {
48
+ this . timeout ( 5000 ) ;
49
+
46
50
var compiler = createCompiler ( ) ;
47
51
compiler . plugin ( 'fork-ts-checker-emit' , function ( ) {
48
52
expect ( true ) . to . be . true ;
@@ -54,6 +58,8 @@ describe('[INTEGRATION] index', function () {
54
58
55
59
56
60
it ( 'should not block emit on watch mode' , function ( callback ) {
61
+ this . timeout ( 5000 ) ;
62
+
57
63
var compiler = createCompiler ( ) ;
58
64
var watching = compiler . watch ( { } , function ( ) { } ) ;
59
65
@@ -83,7 +89,7 @@ describe('[INTEGRATION] index', function () {
83
89
84
90
it ( 'should find the same errors on multi-process mode' , function ( callback ) {
85
91
// set bigger timeout - it can be a little big long test
86
- this . timeout ( 5000 ) ;
92
+ this . timeout ( 10000 ) ;
87
93
88
94
var compilerA = createCompiler ( { workers : 1 , tslint : true } ) ;
89
95
var compilerB = createCompiler ( { workers : 4 , tslint : true } ) ;
0 commit comments