Skip to content

Commit

Permalink
feat: Add npm run compile to the testproxy command (#1258)
Browse files Browse the repository at this point in the history
* Add npm run compile to the testproxy command

The test proxy references the compiled client library code. Every time the test proxy is run, we want it to reflect the source code so that as we develop we don’t get confused about what gets observed.

* feat: Add npm run compile to the testproxy command
  • Loading branch information
danieljbruce committed Mar 15, 2023
1 parent 44fab5c commit 52c06a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"pretest": "npm run compile",
"test": "c8 mocha build/test",
"test:snap": "SNAPSHOT_UPDATE=1 npm test",
"testproxy": "node testproxy/index.js",
"testproxy": "npm run compile && node testproxy/index.js",
"clean": "gts clean",
"precompile": "gts clean"
},
Expand Down

0 comments on commit 52c06a2

Please sign in to comment.