We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bf5284 commit 08f1de3Copy full SHA for 08f1de3
.vscode/launch.json
@@ -2,9 +2,9 @@
2
"version": "0.2.0",
3
"configurations": [
4
{
5
- "name": "Launch tests via NPM",
+ "name": "Run only the marked tests via terminal",
6
"type": "node-terminal",
7
- "command": "npm test",
+ "command": "npm run test-only",
8
"request": "launch"
9
}
10
]
package.json
@@ -5,7 +5,8 @@
"description": "The library for converting CSS to HTML",
"main": "index.js",
"scripts": {
- "test": "node --test --watch"
+ "test": "node --test --watch",
+ "test-only": "node --test --watch --test-only"
},
11
"type": "module",
12
"repository": {
0 commit comments