mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:06:57 +08:00
9a34625cb8
It's backward compatible so still supports our 3.28 ember-source. The visible change is finally getting rid of this message: ``` WARNING: Node v18.12.0 is not tested against Ember CLI on your platform. We recommend that you use the most-recent "Active LTS" version of Node.js. See https://git.io/v7S5n for details. ``` --- `@ember/string` dependency is added for future compatibility. See: https://github.com/ember-cli/ember-cli/pull/10125 --- `tests/helpers/index.js` is unused for now, but is a nice pattern. We could move some of our test setup into local `setupApplicationTest/setupRenderingTest/setupTest` helpers. Co-authored-by: David Taylor <david@taylorhq.com>
28 lines
668 B
JavaScript
28 lines
668 B
JavaScript
"use strict";
|
|
|
|
const EmberAddon = require("ember-cli/lib/broccoli/ember-addon");
|
|
|
|
module.exports = function (defaults) {
|
|
const app = new EmberAddon(defaults, {
|
|
autoImport: {
|
|
publicAssetURL: "",
|
|
},
|
|
});
|
|
|
|
/*
|
|
This build file specifies the options for the dummy test app of this
|
|
addon, located in `/tests/dummy`
|
|
This build file does *not* influence how the addon or the app using it
|
|
behave. You most likely want to be modifying `./index.js` or app's build file
|
|
*/
|
|
|
|
const { maybeEmbroider } = require("@embroider/test-setup");
|
|
return maybeEmbroider(app, {
|
|
skipBabel: [
|
|
{
|
|
package: "qunit",
|
|
},
|
|
],
|
|
});
|
|
};
|