Skip to content

Commit a5a54c5

Browse files
committed
Added jest-cucumber and npx'd all commands
- jest-cucumber is my preferred technique for writing tests that rely on initial state. You can use Given-When-Then (Gherkins) to do this which makes your code readable to even non-technical people. - Added npx in front of nodemon commands.
1 parent 162aeb9 commit a5a54c5

File tree

7 files changed

+15180
-953
lines changed

7 files changed

+15180
-953
lines changed

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"preLaunchTask": "npm: build",
99
"program": "${workspaceFolder}/src/index.ts",
1010
"protocol": "inspector",
11-
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
11+
"outFiles": ["${workspaceFolder}/build/**/*.js"],
1212
"sourceMaps": true,
1313
"smartStep": true,
1414
"internalConsoleOptions": "openOnSessionStart"

nodemon.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"watch": ["src"],
33
"ext": ".ts,.js",
44
"ignore": [],
5-
"exec": "ts-node ./src/index.ts"
5+
"exec": "npx ts-node ./src/index.ts"
66
}

0 commit comments

Comments
 (0)