Skip to content

Commit e5a2da7

Browse files
committed
chore: clear examples runner lint warnings
1 parent c5a5be1 commit e5a2da7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/run-examples.cjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ async function startSharedServers() {
9595
return { server, replSet, singleVersion, replSetVersion, launchTimeout };
9696
}
9797

98-
async function startStandaloneServer(version, launchTimeout) {
98+
function startStandaloneServer(version, launchTimeout) {
9999
const { MongoMemoryServer } = require('mongodb-memory-server');
100100
return MongoMemoryServer.create({
101101
binary: { version },
@@ -107,7 +107,7 @@ async function startStandaloneServer(version, launchTimeout) {
107107
});
108108
}
109109

110-
async function startReplSetServer(version, launchTimeout) {
110+
function startReplSetServer(version, launchTimeout) {
111111
const { MongoMemoryReplSet } = require('mongodb-memory-server');
112112
return MongoMemoryReplSet.create({
113113
binary: { version },

0 commit comments

Comments
 (0)