Skip to content

Commit 52c06a2

Browse files
authored
feat: Add npm run compile to the testproxy command (#1258)
* 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
1 parent 44fab5c commit 52c06a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"pretest": "npm run compile",
4343
"test": "c8 mocha build/test",
4444
"test:snap": "SNAPSHOT_UPDATE=1 npm test",
45-
"testproxy": "node testproxy/index.js",
45+
"testproxy": "npm run compile && node testproxy/index.js",
4646
"clean": "gts clean",
4747
"precompile": "gts clean"
4848
},

0 commit comments

Comments
 (0)