25 lines
517 B
JavaScript
25 lines
517 B
JavaScript
/*eslint node/no-extraneous-require: "off"*/
|
|
const useTestFrameworkDetector = require('@ember-data/private-build-infra/src/utilities/test-framework-detector');
|
|
|
|
module.exports = useTestFrameworkDetector({
|
|
description: 'Generates Consul HTTP ember-data serializer unit and integration tests.',
|
|
|
|
root: __dirname,
|
|
|
|
fileMapTokens(options) {
|
|
return {
|
|
__root__() {
|
|
return 'tests';
|
|
},
|
|
__path__() {
|
|
return '';
|
|
},
|
|
};
|
|
},
|
|
|
|
locals(options) {
|
|
return {
|
|
};
|
|
},
|
|
});
|