Skip to content

Commit

Permalink
Working tests for directory class
Browse files Browse the repository at this point in the history
  • Loading branch information
robmoffat committed Oct 28, 2022
1 parent 541d041 commit b0c3a8d
Show file tree
Hide file tree
Showing 18 changed files with 2,079 additions and 176 deletions.
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/packages/main/dist/index.cjs",
"outFiles": [
"${workspaceFolder}/**/*.js"
]
}
]
}
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
1 change: 1 addition & 0 deletions directory/src/config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const DirectoryPort = 8080;
156 changes: 156 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"eslint-plugin-prettier": "^4.0.0",
"jsdom": "^19.0.0",
"nano-staged": "^0.5.0",
"openapi-typescript": "^5.4.1",
"playwright": "^1.19.2",
"prettier": "^2.5.1",
"rollup-plugin-tsconfig-paths": "^1.4.0",
Expand Down
Loading

0 comments on commit b0c3a8d

Please sign in to comment.