DEV: Support qunit_disable_auto_start in ember CLI (#16358)
Required for e.g. `test/run-qunit.js`
This commit is contained in:
parent
9060a045c2
commit
6555f0c11b
|
@ -16,8 +16,10 @@ document.addEventListener("discourse-booted", () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
let setupTests = require("discourse/tests/setup-tests").default;
|
let setupTests = require("discourse/tests/setup-tests").default;
|
||||||
const skippingCore =
|
const params = new URLSearchParams(window.location.search);
|
||||||
new URLSearchParams(window.location.search).get("qunit_skip_core") === "1";
|
const skipCore = params.get("qunit_skip_core") === "1";
|
||||||
|
const disableAutoStart = params.get("qunit_disable_auto_start") === "1";
|
||||||
|
|
||||||
// eslint-disable-next-line no-undef
|
// eslint-disable-next-line no-undef
|
||||||
Ember.ENV.LOG_STACKTRACE_ON_DEPRECATION = false;
|
Ember.ENV.LOG_STACKTRACE_ON_DEPRECATION = false;
|
||||||
|
|
||||||
|
@ -43,10 +45,12 @@ document.addEventListener("discourse-booted", () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
loader.loadModules();
|
loader.loadModules();
|
||||||
|
|
||||||
start({
|
start({
|
||||||
setupTestContainer: false,
|
setupTestContainer: false,
|
||||||
loadTests: false,
|
loadTests: false,
|
||||||
setupEmberOnerrorValidation: !skippingCore,
|
startTests: !disableAutoStart,
|
||||||
|
setupEmberOnerrorValidation: !skipCore,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
window.EmberENV.TESTS_FILE_LOADED = true;
|
window.EmberENV.TESTS_FILE_LOADED = true;
|
||||||
|
|
Loading…
Reference in New Issue