File tree Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change 1- import { satisfies } from 'semver' ;
2-
31import { loadSpecTests } from '../spec' ;
42import { executeUriValidationTest } from '../tools/uri_spec_runner' ;
53
@@ -11,22 +9,6 @@ const skipTests = [
119describe ( 'Connection String spec tests' , function ( ) {
1210 const suites = loadSpecTests ( 'connection-string' ) ;
1311
14- beforeEach ( function ( ) {
15- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
16- const test = this . currentTest ! ;
17-
18- const skippedTests = [
19- 'Invalid port (zero) with IP literal' ,
20- 'Invalid port (zero) with hostname'
21- ] ;
22- test . skipReason =
23- satisfies ( process . version , '>=20.0.0' ) && skippedTests . includes ( test . title )
24- ? 'TODO(NODE-5666): fix failing unit tests on Node20+'
25- : undefined ;
26-
27- if ( test . skipReason ) this . skip ( ) ;
28- } ) ;
29-
3012 for ( const suite of suites ) {
3113 describe ( suite . name , function ( ) {
3214 for ( const test of suite . tests ) {
You can’t perform that action at this time.
0 commit comments