Skip to content

Commit ee73fa0

Browse files
authored
docs(test-runners): fix miss-capitalization (#669)
DataBase -> Database
1 parent 332b87d commit ee73fa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/guides/integration-examples/test-runners.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export = async function globalSetup() {
5757
}
5858

5959
// The following is to make sure the database is clean before an test starts
60-
await mongoose.connect(`${process.env.MONGO_URI}/${config.DataBase}`);
60+
await mongoose.connect(`${process.env.MONGO_URI}/${config.Database}`);
6161
await mongoose.connection.db.dropDatabase();
6262
await mongoose.disconnect();
6363
};

0 commit comments

Comments
 (0)