Skip to content

Commit

Permalink
test(cli): add jest tests from hygen to nextgen
Browse files Browse the repository at this point in the history
  • Loading branch information
fratzinger committed Dec 22, 2021
1 parent bed4baa commit 916cfad
Show file tree
Hide file tree
Showing 32 changed files with 11,822 additions and 4,558 deletions.
44 changes: 44 additions & 0 deletions packages/cli/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"resolveSourceMapLocations": [
"${workspaceFolder}/**",
"!**/node_modules/**"
],
"request": "launch",
"name": "Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/mocha",
"args": [
"test/**/*.test.ts",
"--timeout",
"600000",
"--config",
"../../.mocharc.json"
],
"internalConsoleOptions": "openOnSessionStart",
"outputCapture": "std",
"skipFiles": [
"<node_internals>/**"
],
"cwd": "${workspaceRoot}",
},
{
"type": "pwa-node",
"resolveSourceMapLocations": [
"${workspaceFolder}/**",
"!**/node_modules/**"
],
"request": "launch",
"name": "Jest Tests",
"program": "${workspaceFolder}/node_modules/jest/bin/jest.js",
"internalConsoleOptions": "openOnSessionStart",
"outputCapture": "std",
"skipFiles": [
"<node_internals>/**"
],
"cwd": "${workspaceRoot}",
},
]
}
Loading

0 comments on commit 916cfad

Please sign in to comment.