-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
Copy pathindex.js
36 lines (29 loc) · 921 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
'use strict';
const stringUtils = require('ember-cli-string-utils');
const path = require('path');
const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
const useTestFrameworkDetector = require('../test-framework-detector');
module.exports = useTestFrameworkDetector({
description: 'Generates a util unit test.',
shouldTransformTypeScript: true,
init() {
this._super && this._super.init.apply(this, arguments);
maybePolyfillTypeScriptBlueprints(this);
},
fileMapTokens() {
return {
__root__() {
return 'tests';
},
__testType__() {
return path.join('unit', 'utils');
},
};
},
locals: function (options) {
return {
friendlyTestName: ['Unit', 'Utility', options.entity.name].join(' | '),
dasherizedModulePrefix: stringUtils.dasherize(options.project.config().modulePrefix),
};
},
});