@@ -5,19 +5,8 @@ import { runUnifiedSuite } from '../../tools/unified-spec-runner/runner';
5
5
6
6
const SKIPPED_TESTS = [
7
7
'callback succeeds after multiple connection errors' ,
8
- 'callback is not retried after non-transient error' ,
9
8
'callback is not retried after non-transient error (DuplicateKeyError)' ,
10
- 'withTransaction succeeds if callback aborts' ,
11
- 'unpin after transient error within a transaction' ,
12
- 'withTransaction succeeds if callback commits' ,
13
- 'withTransaction still succeeds if callback aborts and runs extra op' ,
14
- 'withTransaction still succeeds if callback commits and runs extra op' ,
15
- 'withTransaction commits after callback returns (second transaction)' ,
16
- 'withTransaction commits after callback returns' ,
17
- 'withTransaction and no transaction options set' ,
18
- 'withTransaction inherits transaction options from defaultTransactionOptions' ,
19
- 'withTransaction explicit transaction options override defaultTransactionOptions' ,
20
- 'withTransaction explicit transaction options'
9
+ 'withTransaction succeeds if callback aborts'
21
10
] ;
22
11
23
12
describe ( 'Transactions Convenient API Spec Unified Tests' , function ( ) {
@@ -33,7 +22,7 @@ describe('Transactions Convenient API Spec Unified Tests', function () {
33
22
34
23
runUnifiedSuite ( loadSpecTests ( path . join ( 'transactions-convenient-api' , 'unified' ) ) , test => {
35
24
return SKIPPED_TESTS . includes ( test . description )
36
- ? 'TODO(NODE-5855/DRIVERS-2816 ): Skipping failing transaction tests'
25
+ ? 'TODO(NODE-5855): Skipping failing transaction tests'
37
26
: false ;
38
27
} ) ;
39
28
} ) ;
0 commit comments