@@ -5,19 +5,8 @@ import { runUnifiedSuite } from '../../tools/unified-spec-runner/runner';
55
66const SKIPPED_TESTS = [
77 'callback succeeds after multiple connection errors' ,
8- 'callback is not retried after non-transient error' ,
98 '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'
2110] ;
2211
2312describe ( 'Transactions Convenient API Spec Unified Tests' , function ( ) {
@@ -33,7 +22,7 @@ describe('Transactions Convenient API Spec Unified Tests', function () {
3322
3423 runUnifiedSuite ( loadSpecTests ( path . join ( 'transactions-convenient-api' , 'unified' ) ) , test => {
3524 return SKIPPED_TESTS . includes ( test . description )
36- ? 'TODO(NODE-5855/DRIVERS-2816 ): Skipping failing transaction tests'
25+ ? 'TODO(NODE-5855): Skipping failing transaction tests'
3726 : false ;
3827 } ) ;
3928} ) ;
0 commit comments