Skip to content

Commit 82b3d4b

Browse files
committed
fix: rename describes
1 parent bf9db9b commit 82b3d4b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/integration/tools/atlas/atlasHelpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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, () => {

tests/integration/tools/mongodb/mongodbHelpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)