File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
tests/integration/tools/atlas Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ function extractProcessIds(connectionString: string): Array<string> {
88 if ( ! connectionString || connectionString === "" ) return [ ] ;
99
1010 // Extract host:port pairs from connection string
11- const matches = connectionString . match ( / ^ m o n g o d b : \/ \/ ( [ ^ \ /] + ) / ) ;
11+ const matches = connectionString . match ( / ^ m o n g o d b : \/ \/ ( [ ^ / ] + ) / ) ;
1212 if ( ! matches ) {
1313 return [ ] ;
1414 }
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import type { IntegrationTest } from "../../helpers.js";
55import { setupIntegrationTest , defaultTestConfig , defaultDriverOptions } from "../../helpers.js" ;
66import type { SuiteCollector } from "vitest" ;
77import { afterAll , beforeAll , describe } from "vitest" ;
8- import { Session } from "../../../../src/common/session.js" ;
8+ import type { Session } from "../../../../src/common/session.js" ;
99
1010export type IntegrationTestFunction = ( integration : IntegrationTest ) => void ;
1111
You can’t perform that action at this time.
0 commit comments