Skip to content

Commit a77e735

Browse files
committed
Add karma.config.d folder
1 parent 0f3dcde commit a77e735

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

karma.config.d/extra.karma.conf.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
const basePath = config.basePath.replace(/\/node_modules$/, "")
2+
config.set({
3+
"basePath": basePath,
4+
"files": [
5+
...config.files,
6+
{pattern: 'kotlin/**/*', included: false}
7+
],
8+
"proxies": {
9+
'/': '/base/kotlin/'
10+
},
11+
client: {
12+
mocha: {
13+
timeout: 20000
14+
}
15+
}
16+
})

0 commit comments

Comments
 (0)