2020-12-14 15:28:35 +00:00
|
|
|
/*eslint node/no-extraneous-require: "off"*/
|
2020-03-02 17:45:42 +00:00
|
|
|
const useTestFrameworkDetector = require('@ember-data/private-build-infra/src/utilities/test-framework-detector');
|
|
|
|
|
2019-11-19 10:35:10 +00:00
|
|
|
module.exports = useTestFrameworkDetector({
|
2020-03-02 17:45:42 +00:00
|
|
|
description: 'Generates a Consul ember-data model unit test.',
|
2019-11-19 10:35:10 +00:00
|
|
|
|
|
|
|
root: __dirname,
|
|
|
|
|
|
|
|
fileMapTokens(options) {
|
|
|
|
return {
|
|
|
|
__root__() {
|
|
|
|
return 'tests';
|
|
|
|
},
|
|
|
|
__path__() {
|
|
|
|
return '';
|
2020-03-02 17:45:42 +00:00
|
|
|
},
|
2019-11-19 10:35:10 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
locals(options) {
|
|
|
|
return {
|
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|