File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export function sleep(ms: number) {
99 return new Promise ( ( resolve ) => setTimeout ( resolve , ms ) ) ;
1010}
1111
12- export function describeAtlas ( name : number | string | Function | jest . FunctionLike , fn : IntegrationTestFunction ) {
12+ export function describeWithAtlas ( name : number | string | Function | jest . FunctionLike , fn : IntegrationTestFunction ) {
1313 const testDefinition = ( ) => {
1414 const integration = setupIntegrationTest ( ) ;
1515 describe ( name , ( ) => {
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ interface MongoDBIntegrationTest {
1212 randomDbName : ( ) => string ;
1313}
1414
15- export function describeMongoDB (
15+ export function describeWithMongoDB (
1616 name : number | string | Function | jest . FunctionLike ,
1717 fn : ( integration : IntegrationTest & MongoDBIntegrationTest ) => void
1818) : void {
You can’t perform that action at this time.
0 commit comments