diff options
author | Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com> | 2024-11-06 19:52:46 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-06 19:52:46 -0800 |
commit | 742744d4985548a948bc90e78673c0c22d607d8a (patch) | |
tree | bb752af8134041f4149992606b7768f0d718dab5 /tests/registry | |
parent | 1cab4f07a3e6125a089726f022dd6bc9af517536 (diff) |
chore: serve node headers from a test server to fix flaky `node-gyp` test (#26749)
Fixes https://github.com/denoland/deno/issues/24749
Runs a server that just returns the header tarball and checksum, and
sets the `NODEJS_ORG_MIRROR` env var so that `node-gyp` uses it instead
of `nodejs.org`
Diffstat (limited to 'tests/registry')
-rw-r--r-- | tests/registry/npm/@denotest/node-addon/1.0.0/package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/registry/npm/@denotest/node-addon/1.0.0/package.json b/tests/registry/npm/@denotest/node-addon/1.0.0/package.json index 5d50aa119..d730e3dd0 100644 --- a/tests/registry/npm/@denotest/node-addon/1.0.0/package.json +++ b/tests/registry/npm/@denotest/node-addon/1.0.0/package.json @@ -2,7 +2,7 @@ "name": "@denotest/node-addon", "version": "1.0.0", "scripts": { - "install": "node-gyp configure build" + "install": "node-gyp configure --verbose build" }, "dependencies": { "node-gyp": "10.1.0" |