It would be nice to have same functionality for JavaScript files. i.e. karma.conf.js file. Sometimes specifing file pattern isn't enough. Would be nice to have a way, to include files there as well.
i.e.
options: {
// ...
js: {
js: 'app/{filePath}'
}
},
karmaTarget: {
files: {
'karma.conf.js': 'karma.conf.js'
}
}
and in karma.conf.js
// ...
files: [
// include: "type": "js", "files": "app/**/*.spec.js", "ordering": "top-down"
]
// ...
It would be nice to have same functionality for JavaScript files. i.e. karma.conf.js file. Sometimes specifing file pattern isn't enough. Would be nice to have a way, to include files there as well.
i.e.
and in
karma.conf.js