Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed unit test after merge
  • Loading branch information
Frank Schmid committed Oct 23, 2017
commit 294cefd1b1c15a749c19cc732bb09432aa8a8af0
3 changes: 2 additions & 1 deletion tests/packExternalModules.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,8 @@ describe('packExternalModules', () => {
childProcessMock.exec.onFirstCall().yields(null, '{}', '');
childProcessMock.exec.onSecondCall().yields(null, '', '');
childProcessMock.exec.onThirdCall().yields();
return expect(module.packExternalModules(stats)).to.be.fulfilled
module.compileStats = stats;
return expect(module.packExternalModules()).to.be.fulfilled
.then(() => BbPromise.all([
// The module package JSON and the composite one should have been stored
expect(writeFileSyncStub).to.have.been.calledTwice,
Expand Down