File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
/* eslint @typescript-eslint/no-non-null-assertion: 0 */
2
+ /**
3
+ * E2E Tests for the various SDK interceptors.
4
+ * Tests run serially to improve CI reliability..
5
+ * @module
6
+ */
7
+
2
8
import test from 'ava' ;
3
9
import { v4 as uuid4 } from 'uuid' ;
4
10
import { Worker , DefaultLogger } from '@temporalio/worker' ;
@@ -10,7 +16,7 @@ import { Sleeper } from './interfaces';
10
16
import { RUN_INTEGRATION_TESTS } from './helpers' ;
11
17
12
18
if ( RUN_INTEGRATION_TESTS ) {
13
- test ( 'Tracing can be implemented using interceptors' , async ( t ) => {
19
+ test . serial ( 'Tracing can be implemented using interceptors' , async ( t ) => {
14
20
const taskQueue = 'test-interceptors' ;
15
21
const message = uuid4 ( ) ;
16
22
@@ -59,7 +65,7 @@ if (RUN_INTEGRATION_TESTS) {
59
65
t . is ( result , message ) ;
60
66
} ) ;
61
67
62
- test ( 'WorkflowClientCallsInterceptor intercepts terminate and cancel' , async ( t ) => {
68
+ test . serial ( 'WorkflowClientCallsInterceptor intercepts terminate and cancel' , async ( t ) => {
63
69
const taskQueue = 'test-interceptor-term-and-cancel' ;
64
70
const message = uuid4 ( ) ;
65
71
You can’t perform that action at this time.
0 commit comments