Skip to content
This repository was archived by the owner on Aug 7, 2021. It is now read-only.

Commit 3507346

Browse files
vchimevvchimev
authored andcommitted
chore(AngularApp): update config files
1 parent b124e3b commit 3507346

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

demo/AngularApp/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ hooks
44

55
app/**/*.js
66
e2e/**/*.js
7+
e2e/**/*.map
78
e2e/reports/
89
test-results.xml
910

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "Debug",
11+
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
12+
"args": [
13+
"-u",
14+
"tdd",
15+
"--timeout",
16+
"999999",
17+
"--colors",
18+
"--opts",
19+
"./e2e/config/mocha.opts",
20+
"--runType",
21+
"android23",
22+
"--reuseDevice"
23+
// "${workspaceFolder}/test"
24+
],
25+
"internalConsoleOptions": "openOnSessionStart"
26+
},
27+
{
28+
"type": "node",
29+
"request": "launch",
30+
"name": "Launch Program",
31+
"program": "${file}"
32+
}
33+
]
34+
}

demo/AngularApp/e2e/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"experimentalDecorators": true,
66
"emitDecoratorMetadata": true,
77
"importHelpers": false,
8+
"sourceMap": true,
89
"types": [
910
"node",
1011
"mocha",

0 commit comments

Comments
 (0)