Permalink
Browse files
chore(tests): fix appx tests on rebased branch
- Loading branch information
Showing
with
2 additions
and
1 deletion.
-
+2
−1
test/fast/forge-config_spec.js
|
@@ -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'], |
|
@@ -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' }, |
|
|
})); |
|
|
}); |
|
|
|
|
|
0 comments on commit
75f217a