File tree 1 file changed +4
-1
lines changed
packages/@aws-cdk-testing/cli-integ/lib
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ export interface TestContext {
10
10
log ( s : string ) : void ;
11
11
} ;
12
12
13
+ if ( process . env . JEST_TEST_CONCURRENT === 'true' ) {
14
+ process . stderr . write ( 'ℹ️ JEST_TEST_CONCURRENT is true: tests will run concurrently and filters have no effect!' ) ;
15
+ }
16
+
13
17
/**
14
18
* A wrapper for jest's 'test' which takes regression-disabled tests into account and prints a banner
15
19
*/
@@ -18,7 +22,6 @@ export function integTest(
18
22
callback : ( context : TestContext ) => Promise < void > ,
19
23
timeoutMillis ?: number ,
20
24
) : void {
21
-
22
25
// Integ tests can run concurrently, and are responsible for blocking
23
26
// themselves if they cannot. Because `test.concurrent` executes the test
24
27
// code immediately, regardles of any `--testNamePattern`, this cannot be the
You can’t perform that action at this time.
0 commit comments