We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09277b7 commit a04e663Copy full SHA for a04e663
Gruntfile.js
@@ -411,7 +411,7 @@ module.exports = function ( grunt ) {
411
'<%= vendor_files.js %>',
412
'<%= html2js.app.dest %>',
413
'<%= html2js.common.dest %>',
414
- 'vendor/angular-mocks/angular-mocks.js'
+ '<%= test_files.js %>'
415
]
416
}
417
},
build.config.js
@@ -33,6 +33,15 @@ module.exports = {
33
less: 'src/less/main.less'
34
35
36
+ /**
37
+ * This is a collection of files used during testing only.
38
+ */
39
+ test_files: {
40
+ js: [
41
+ 'vendor/angular-mocks/angular-mocks.js'
42
+ ]
43
+ },
44
+
45
/**
46
* This is the same as `app_files`, except it contains patterns that
47
* reference vendor code (`vendor/`) that we need to place into the build
0 commit comments