Skip to content

Commit

Permalink
Add test scripts in .vscode\tasks.json
Browse files Browse the repository at this point in the history
To be able to easily run tests from VS Code, added test scripts in `tasks.json`
  • Loading branch information
priyanshu92 authored Dec 16, 2024
1 parent c048bb5 commit e39731d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,34 @@
"group": "build",
"problemMatcher": [],
"label": "gulp: compileWeb"
},
{
"type": "npm",
"script": "test-desktop-int",
"group": "test",
"problemMatcher": [],
"label": "Run Integration Tests: VS Code Deskop"
},
{
"type": "npm",
"script": "test-web-integration",
"group": "test",
"problemMatcher": [],
"label": "Run Integration Tests: VS Code Web"
},
{
"type": "npm",
"script": "test",
"group": "test",
"problemMatcher": [],
"label": "Run Unit Tests"
},
{
"type": "npm",
"script": "coverage",
"group": "test",
"problemMatcher": [],
"label": "Run Code Coverage"
}
]
}

0 comments on commit e39731d

Please sign in to comment.