Skip to content

Commit

Permalink
test: disable native module package test (#2870)
Browse files Browse the repository at this point in the history
  • Loading branch information
erickzhao authored Jun 13, 2022
1 parent f61b2c9 commit 4abb2dc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/api/core/test/slow/api_spec_slow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,10 @@ describe('Electron Forge API', () => {
await fs.remove(path.resolve(dir, 'out'));
});

describe('with prebuilt native module deps installed', () => {
// FIXME(erickzhao): This test hangs on the electron-rebuild step
// with Electron 19. It was tested to work on Electron 18.
// see https://github.com/electron-userland/electron-forge/pull/2869
describe.skip('with prebuilt native module deps installed', () => {
before(async () => {
await installDeps(dir, ['ref-napi']);
});
Expand Down

0 comments on commit 4abb2dc

Please sign in to comment.