Skip to content

Commit 0a2eba8

Browse files
committed
Initial commit
0 parents  commit 0a2eba8

23 files changed

+4529
-0
lines changed

.editorconfig

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = tab
6+
indent_size = 4
7+
8+
[*.json]
9+
indent_style = space
10+
indent_size = 2

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/
2+
dist/
3+
coverage/

bs-config.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"files": [
3+
"./dist/**/*",
4+
"./intern.json"
5+
],
6+
"open": false,
7+
"server": {
8+
"baseDir": [ "dist", "." ]
9+
}
10+
}

intern.json

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"browser": {
3+
"loader": {
4+
"script": "systemjs",
5+
"options": {
6+
"baseURL": "/dist"
7+
}
8+
},
9+
"plugins": [
10+
"intern-angular-shim.js"
11+
],
12+
"suites": [
13+
"app/services/user.service.spec",
14+
"app/app.component.spec.js",
15+
"app/components/welcome.component.spec.js"
16+
]
17+
},
18+
"configs": {
19+
"coverage": {
20+
"reporters+": "htmlcoverage",
21+
"excludeInstrumentation": "node_modules\\/|\\.spec\\.js$|dist\\/[^\\/]+\\.js$"
22+
},
23+
24+
"wd": {
25+
"tunnel": "selenium",
26+
"environments": { "browserName": "chrome", "fixSessionCapabilities": "no-detect" }
27+
},
28+
29+
"wdcoverage": {
30+
"extends": [ "wd", "coverage" ]
31+
}
32+
}
33+
}

0 commit comments

Comments
 (0)