Tolerate variable startup message order in static-html self-test.

This commit is contained in:
Ben Newman
2019-11-12 12:52:25 -05:00
parent c9904c3ed7
commit 1b9fec3f8d

View File

@@ -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 <head> are not supported" message, we should not
// enforce the opposite order here:
// run.match("MongoDB");
return run;
};