Skip to content

Commit

Permalink
Fix test debugger (microsoft#1769)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreidubov authored Jan 24, 2020
1 parent fd1daac commit 3555ec2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 19 deletions.
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"name": "Tests-android",
"type": "node",
"request": "launch",
"preLaunchTask": "Setup-tests-android",
"preLaunchTask": "Setup-android",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
Expand All @@ -23,7 +23,7 @@
"name": "Tests-ios",
"type": "node",
"request": "launch",
"preLaunchTask": "Setup-tests-ios",
"preLaunchTask": "Setup-ios",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
Expand Down
16 changes: 2 additions & 14 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
{
"type": "shell",
"label": "Setup-android",
"dependsOn": "Build",
"command": "npm",
"args": [
"run",
Expand All @@ -36,6 +37,7 @@
{
"type": "shell",
"label": "Setup-ios",
"dependsOn": "Build",
"command": "npm",
"args": [
"run",
Expand All @@ -48,20 +50,6 @@
"problemMatcher": [
"$tsc"
]
},
{
"label": "Setup-tests-android",
"dependsOn": [
"Build",
"Setup-android"
]
},
{
"label": "Setup-tests-ios",
"dependsOn": [
"Build",
"Setup-ios"
]
}
]
}
3 changes: 0 additions & 3 deletions tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
"one-line": [true,
"check-open-brace"
],
"no-unreachable": true,
"no-unused-variable": true,
"no-use-before-declare": true,
"quotemark": [true,
"double"
],
Expand Down

0 comments on commit 3555ec2

Please sign in to comment.