File tree 1 file changed +0
-18
lines changed
1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change 1
- import { satisfies } from 'semver' ;
2
-
3
1
import { loadSpecTests } from '../spec' ;
4
2
import { executeUriValidationTest } from '../tools/uri_spec_runner' ;
5
3
@@ -11,22 +9,6 @@ const skipTests = [
11
9
describe ( 'Connection String spec tests' , function ( ) {
12
10
const suites = loadSpecTests ( 'connection-string' ) ;
13
11
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
-
30
12
for ( const suite of suites ) {
31
13
describe ( suite . name , function ( ) {
32
14
for ( const test of suite . tests ) {
You can’t perform that action at this time.
0 commit comments