We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab740cd commit 1f56855Copy full SHA for 1f56855
tests/karma.conf.js
@@ -14,10 +14,9 @@ module.exports = function (config) {
14
15
16
// list of files / patterns to load in the browser
17
- // TODO: changing this to .ts files causes the test to become lest from 126 to 106. ~20 tests are cutoff by something. Needs a future research
18
files: [
19
- 'app/tests/test-main.js',
20
- 'app/**/*.js'
+ 'app/tests/test-main.ts',
+ 'app/**/*.ts'
21
],
22
23
// list of files to exclude
@@ -34,7 +33,7 @@ module.exports = function (config) {
34
33
// test results reporter to use
35
// possible values: 'dots', 'progress'
36
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
37
- reporters: ['progress'],
+ reporters: ['mocha'],
38
39
40
// web server port
0 commit comments