-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathember-cli-build.js
More file actions
45 lines (38 loc) · 1.35 KB
/
ember-cli-build.js
File metadata and controls
45 lines (38 loc) · 1.35 KB
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
37
38
39
40
41
42
43
44
45
/* global require, module */
/* jscs:disable disallowVar, requireEnhancedObjectLiterals */
/* jscs:disable requireTemplateStringsForConcatenation */
var EmberAddon = require('ember-cli/lib/broccoli/ember-addon');
module.exports = function(defaults) {
var app = new EmberAddon(defaults, {
'ember-cli-mocha': {
useLintTree: false
},
// TODO: this is a fix for ember-suave not being compatible with mocha
// See: https://github.com/dockyard/ember-suave/issues/58
// Remove when this issue is fixed, also remove the testGenerator function
// at the end of this file.
jscsOptions: {
testGenerator: testGenerator
}
});
/*
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
*/
return app.toTree();
};
function testGenerator(relativePath, errors) {
if (errors) {
errors = '\\n' + this.escapeErrorString(errors);
}
var expectString = relativePath + ' should pass JSCS' + errors;
return [
'describe("JSCS - ' + relativePath + '", function () {',
'it("should pass jscs", function () {',
'expect(' + !errors + ', "' + expectString + '").to.be.ok;',
'});',
'});'
].join('\n');
}