Skip to content

Commit

Permalink
chore(tests): fix appx tests on rebased branch
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound authored and malept committed Jan 4, 2017
1 parent b495012 commit 75f217a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/fast/forge-config_spec.js
Expand Up @@ -5,7 +5,7 @@ import findConfig from '../../src/util/forge-config';

const defaults = {
make_targets: {
win32: ['squirrel'],
win32: ['squirrel', 'appx'],
darwin: ['zip'],
linux: ['deb', 'rpm'],
mas: ['zip'],
Expand All @@ -21,6 +21,7 @@ describe('forge-config', () => {
it('should resolve the object in package.json with defaults if one exists', async () => {
expect(await findConfig(path.resolve(__dirname, '../fixture/dummy_app'))).to.be.deep.equal(Object.assign({}, defaults, {
electronWinstallerConfig: { windows: 'magic' },
windowsStoreConfig: { packageName: 'test' },
}));
});

Expand Down

0 comments on commit 75f217a

Please sign in to comment.