Package Exports
- electron-squirrel-startup
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (electron-squirrel-startup) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
electron-installer-fixture-windows 
A fixture Electron app for testing tooling on Windows.
Installation
npm install --save-dev electron-installer-fixture-windowsUsage
var path = require('path');
var fs = require('fs');
var assert = require('assert');
var app = {
path: require('electron-installer-fixture-windows')
};
describe('electron-installer-squirrel-windows', function(){
it('should have a package.json', function(done){
var pkg = path.join(app.path, 'resources', 'app', 'package.json');
fs.exists(pkg, function(exists){
assert(exists);
done();
});
});
});License
Apache 2.0