Skip to content

Commit

Permalink
feat: add unit test envirnment
Browse files Browse the repository at this point in the history
  • Loading branch information
unocelli committed Nov 19, 2024
1 parent f777fa2 commit d713465
Show file tree
Hide file tree
Showing 7 changed files with 673 additions and 10 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,6 @@ _reports/

_certificates/

test/

# appdata
server/_appdata
#server/package-lock.json
Expand Down
15 changes: 14 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"Client Chrome localhost"
]
}
],
],
"configurations": [
{
"type": "node",
Expand Down Expand Up @@ -42,5 +42,18 @@
"--env=test"
]
},
{
"type": "node",
"request": "launch",
"name": "Debug Server Mocha Tests",
"program": "${workspaceFolder}/server/node_modules/mocha/bin/_mocha",
"args": [
"--timeout",
"999999",
"--colors",
"server/test/**/*.test.js"
],
"internalConsoleOptions": "openOnSessionStart",
}
]
}
Loading

0 comments on commit d713465

Please sign in to comment.