Skip to content

Commit

Permalink
test(make): add mas test
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound authored and malept committed Nov 9, 2017
1 parent 5e6411e commit 359b279
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/slow/api_spec_slow.js
Expand Up @@ -304,6 +304,15 @@ describe(`electron-forge API (with installer=${installer.substr(12)})`, () => {
skipPackage: true,
})).to.eventually.be.rejectedWith(/incompatible with this version/);
});

it('can make for the MAS platform successfully', async () => {
if (process.platform !== 'darwin') return;
await expect(forge.make({
dir,
overrideTargets: ['zip', 'dmg'],
platform: 'mas',
}));
});
});
});

Expand Down

0 comments on commit 359b279

Please sign in to comment.