Skip to content

Commit

Permalink
test: We're testing on one fewer module
Browse files Browse the repository at this point in the history
  • Loading branch information
felixrieseberg committed Oct 8, 2024
1 parent 8a12916 commit d5e7f92
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"node": ">=12.13.0"
},
"dependencies": {
"@electron/node-gyp": "https://github.com/electron/node-gyp#6424f618322303560cc57f13566413132e74984a",
"@electron/node-gyp": "https://github.com/electron/node-gyp#06b29aafb7708acef8b3669835c8a7857ebc92d2",
"@malept/cross-spawn-promise": "^2.0.0",
"chalk": "^4.0.0",
"debug": "^4.1.1",
Expand Down
4 changes: 2 additions & 2 deletions test/rebuild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ describe('rebuilder', () => {
skipped++;
});
await rebuilder;
expect(skipped).to.equal(8);
expect(skipped).to.equal(7);
});

it('should rebuild all modules again when disabled but the electron ABI changed', async () => {
Expand Down Expand Up @@ -175,7 +175,7 @@ describe('rebuilder', () => {
let built = 0;
rebuilder.lifecycle.on('module-done', () => built++);
await rebuilder;
expect(built).to.equal(3);
expect(built).to.equal(2);
});
});

Expand Down

0 comments on commit d5e7f92

Please sign in to comment.