mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 14:54:48 +08:00
dbcf722ab9
It's like the new tests, but still old underneath!
52 lines
1.0 KiB
JavaScript
52 lines
1.0 KiB
JavaScript
// discourse-skip-module
|
|
|
|
define("sinon", () => {
|
|
return { default: window.sinon };
|
|
});
|
|
define("qunit", () => {
|
|
return {
|
|
default: window.QUnit,
|
|
test: window.QUnit.test,
|
|
skip: window.QUnit.skip,
|
|
module: window.QUnit.module,
|
|
};
|
|
});
|
|
define("ember-qunit", () => {
|
|
return {
|
|
moduleFor: window.moduleFor,
|
|
moduleForComponent: window.moduleForComponent,
|
|
};
|
|
});
|
|
let _app;
|
|
define("@ember/test-helpers", () => {
|
|
let helpers = {
|
|
setApplication(app) {
|
|
_app = app;
|
|
},
|
|
getApplication() {
|
|
return _app;
|
|
},
|
|
async settled() {
|
|
// No-op in pre ember-cli environment
|
|
},
|
|
TestModuleForComponent: window.TestModuleForComponent,
|
|
};
|
|
[
|
|
"click",
|
|
"visit",
|
|
"currentURL",
|
|
"currentRouteName",
|
|
"fillIn",
|
|
"setResolver",
|
|
].forEach((attr) => {
|
|
helpers[attr] = function () {
|
|
return window[attr](...arguments);
|
|
};
|
|
});
|
|
helpers.triggerKeyEvent = window.keyEvent;
|
|
return helpers;
|
|
});
|
|
define("pretender", () => {
|
|
return { default: window.Pretender };
|
|
});
|