Skip to content

Commit

Permalink
test: fix bad copy/paste
Browse files Browse the repository at this point in the history
  • Loading branch information
malept committed Aug 27, 2021
1 parent 8474d92 commit 81fcd8a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/rebuild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ describe('rebuilder', () => {
describe('debug rebuild', function() {
this.timeout(10 * MINUTES_IN_MILLISECONDS);

beforeEach(async () => await resetTestModule(testModulePath));
afterEach(async() => await cleanupTestModule(testModulePath));
before(async () => await resetTestModule(testModulePath));
after(async() => await cleanupTestModule(testModulePath));

it('should have rebuilt ffi-napi module in Debug mode', async () => {
await rebuild({
Expand All @@ -179,8 +179,8 @@ describe('rebuilder', () => {
describe('useElectronClang rebuild', function() {
this.timeout(10 * MINUTES_IN_MILLISECONDS);

beforeEach(async () => await resetTestModule(testModulePath));
afterEach(async() => await cleanupTestModule(testModulePath));
before(async () => await resetTestModule(testModulePath));
after(async() => await cleanupTestModule(testModulePath));

it('should have rebuilt ffi-napi module using clang mode', async () => {
await rebuild({
Expand Down

0 comments on commit 81fcd8a

Please sign in to comment.