Skip to content

Commit 0a83f20

Browse files
diberryAugustinMauroysinedied
authored
Node test runner (#245)
* wip progress - tests run bug fail * ts with ignore all * working through tests * remove all autogen * TS 2339 build error for mock resolved * insert doesn't work * coverage but still slow * .nvmrc file * Update testrunner/tsconfig.json Co-authored-by: Augustin Mauroy <[email protected]> Signed-off-by: Dina Berry (MSFT) <[email protected]> * Update testrunner/package.json Co-authored-by: Augustin Mauroy <[email protected]> Signed-off-by: Dina Berry (MSFT) <[email protected]> * Update testrunner/package.json Co-authored-by: Augustin Mauroy <[email protected]> Signed-off-by: Dina Berry (MSFT) <[email protected]> * 2 separate folders * revert to see suggestions again * 2 versions * wop test runner build and test wip ignore coverage and update readmes * one insert test passes * test pass * vitest inserts work * 1:1 * 1:1 * don't touch unit-testing * Apply suggestions from code review Co-authored-by: Yohan Lasorsa <[email protected]> Signed-off-by: Dina Berry (MSFT) <[email protected]> * az and cosmos resources with mi * Updates based on feedback * Update readme files * remove old file * Updates based on Maor's review --------- Signed-off-by: Dina Berry (MSFT) <[email protected]> Co-authored-by: Augustin Mauroy <[email protected]> Co-authored-by: Yohan Lasorsa <[email protected]>
1 parent c3376c9 commit 0a83f20

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+10721
-2035
lines changed

.devcontainer/devcontainer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
{
44
"name": "Node.js",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-20-bullseye",
6+
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-22-bullseye",
77
"features": {
8-
"ghcr.io/devcontainers-contrib/features/npm-package:1": {}
8+
"ghcr.io/devcontainers-contrib/features/npm-package:1": {},
9+
"ghcr.io/devcontainers/features/azure-cli:1": {}
910
},
1011
"customizations": {
1112
"vscode": {
@@ -21,7 +22,7 @@
2122
"github.vscode-github-actions"
2223
]
2324
}
24-
}
25+
},
2526

2627
// Features to add to the dev container. More info: https://containers.dev/features.
2728
// "features": {},
@@ -30,7 +31,7 @@
3031
// "forwardPorts": [],
3132

3233
// Use 'postCreateCommand' to run commands after the container is created.
33-
// "postCreateCommand": "yarn install",
34+
"postCreateCommand": "npm install -g typescript"
3435

3536
// Configure tool-specific properties.
3637
// "customizations": {},

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@
22
node_modules
33
.env*
44
dist
5+
**/*.env
6+
**/coverage/
7+
58

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v22.12.0

0 commit comments

Comments
 (0)