diff --git a/tools/tests/static-html.js b/tools/tests/static-html.js index 5eb89b3637..c728f75e9d 100644 --- a/tools/tests/static-html.js +++ b/tools/tests/static-html.js @@ -15,7 +15,10 @@ function startRun(sandbox) { run.match("myapp"); run.match("proxy"); run.tellMongo(MONGO_LISTENING); - run.match("MongoDB"); + // Since the "=> Started MongoDB" message can appear after the + // "Attributes on are not supported" message, we should not + // enforce the opposite order here: + // run.match("MongoDB"); return run; };