├── .babelrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── index.js ├── package.json ├── src ├── AppConfigDriver.js ├── AppEventsDriver.js ├── AppLifecycleDriver.js ├── AppMetadataDriver.js ├── AppVisibilityDriver.js ├── BasicAuthDriver.js ├── CertErrorOverrideDriver.js ├── ClientCertDriver.js ├── MainDriver.js ├── RecentDocsDriver.js ├── index.js └── pathNames.js └── test ├── specs ├── AppConfigDriver.tests.js ├── AppEventsDriver.tests.js ├── AppLifecycleDriver.tests.js ├── AppMetadataDriver.tests.js ├── AppVisibilityDriver.tests.js ├── BasicAuthDriver.tests.js ├── CertErrorOverrideDriver.js ├── ClientCertDriver.tests.js ├── MainDriver.tests.js ├── RecentDocsDriver.tests.js ├── global-hooks.js └── index.tests.js └── stubs └── App.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/package.json -------------------------------------------------------------------------------- /src/AppConfigDriver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/src/AppConfigDriver.js -------------------------------------------------------------------------------- /src/AppEventsDriver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/src/AppEventsDriver.js -------------------------------------------------------------------------------- /src/AppLifecycleDriver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/src/AppLifecycleDriver.js -------------------------------------------------------------------------------- /src/AppMetadataDriver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/src/AppMetadataDriver.js -------------------------------------------------------------------------------- /src/AppVisibilityDriver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/src/AppVisibilityDriver.js -------------------------------------------------------------------------------- /src/BasicAuthDriver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/src/BasicAuthDriver.js -------------------------------------------------------------------------------- /src/CertErrorOverrideDriver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/src/CertErrorOverrideDriver.js -------------------------------------------------------------------------------- /src/ClientCertDriver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/src/ClientCertDriver.js -------------------------------------------------------------------------------- /src/MainDriver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/src/MainDriver.js -------------------------------------------------------------------------------- /src/RecentDocsDriver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/src/RecentDocsDriver.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pathNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/src/pathNames.js -------------------------------------------------------------------------------- /test/specs/AppConfigDriver.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/test/specs/AppConfigDriver.tests.js -------------------------------------------------------------------------------- /test/specs/AppEventsDriver.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/test/specs/AppEventsDriver.tests.js -------------------------------------------------------------------------------- /test/specs/AppLifecycleDriver.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/test/specs/AppLifecycleDriver.tests.js -------------------------------------------------------------------------------- /test/specs/AppMetadataDriver.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/test/specs/AppMetadataDriver.tests.js -------------------------------------------------------------------------------- /test/specs/AppVisibilityDriver.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/test/specs/AppVisibilityDriver.tests.js -------------------------------------------------------------------------------- /test/specs/BasicAuthDriver.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/test/specs/BasicAuthDriver.tests.js -------------------------------------------------------------------------------- /test/specs/CertErrorOverrideDriver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/test/specs/CertErrorOverrideDriver.js -------------------------------------------------------------------------------- /test/specs/ClientCertDriver.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/test/specs/ClientCertDriver.tests.js -------------------------------------------------------------------------------- /test/specs/MainDriver.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/test/specs/MainDriver.tests.js -------------------------------------------------------------------------------- /test/specs/RecentDocsDriver.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/test/specs/RecentDocsDriver.tests.js -------------------------------------------------------------------------------- /test/specs/global-hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/test/specs/global-hooks.js -------------------------------------------------------------------------------- /test/specs/index.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/test/specs/index.tests.js -------------------------------------------------------------------------------- /test/stubs/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoco/cycle-electron-driver/HEAD/test/stubs/App.js --------------------------------------------------------------------------------