JSPM

electron-squirrel-startup

0.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 125740
  • Score
    100M100P100Q179889F
  • License Apache-2.0

A fixture Electron app for testing tooling on Windows.

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-windows

Usage

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