Skip to content

Commit cc63d78

Browse files
init karma + jasmine
1 parent be40997 commit cc63d78

File tree

8 files changed

+5944
-404
lines changed

8 files changed

+5944
-404
lines changed

karma.conf.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
module.exports = function(config) {
2+
config.set({
3+
frameworks: ['jasmine', 'karma-typescript'],
4+
files: [
5+
'src/**/*.ts',
6+
'test/**/*.ts'
7+
],
8+
preprocessors: {
9+
'**/*.ts': ['karma-typescript']
10+
},
11+
karmaTypescriptConfig: {
12+
tsconfig: 'tsconfig.test.json'
13+
},
14+
browsers: ['Chrome']
15+
})
16+
}

0 commit comments

Comments
 (0)