Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
electron-mocha
Advanced tools
Mocha testing in Electron. This project has two main value propositions:
npm i -g electron-mocha
First, you need to install Electron. You can either run:
npm i -g electron-prebuilt
and then electron
will be added to your path. Or, you
can download a version from https://github.com/atom/electron/releases and
then set an environment variable ELECTRON_PATH
pointing to the binary.
Note if you're using Mac OS X, the path would be to the actual executable
and not the app directory e.g. /Applications/Electron.app/Contents/MacOS/Electron
.
You should probably just install electron-prebuilt
as it simplifies things.
electron-mocha
is almost a drop-in replacement for the regular mocha
command.
Here's the help output:
Usage: electron-mocha [options] [files]
Options:
-h, --help output usage information
-V, --version output the version number
-R, --reporter <name> specify the reporter to use
-S, --sort sort test files
-b, --bail bail after first test failure
-g, --grep <pattern> only run tests matching <pattern>
-f, --fgrep <string> only run tests containing <string>
-i, --invert inverts --grep and --fgrep matches
-r, --require <name> require the given module
-s, --slow <ms> "slow" test threshold in milliseconds [75]
-t, --timeout <ms> set test-case timeout in milliseconds [2000]
-u, --ui <name> specify user-interface (bdd|tdd|exports)
--check-leaks check for global variable leaks
--compilers use the given module(s) to compile files
--globals <names> allow the given comma-delimited global [names]
--inline-diffs display actual/expected differences inline within each string
--interfaces display available interfaces
--no-timeouts disables timeouts
--opts <path> specify opts path [test/mocha.opts]
--recursive include sub directories
--renderer run tests in renderer process
--preload <name> preload the given script in renderer process
So if you run:
electron-mocha ./tests
This runs the tests in the main
process. The output that you could expect would be pretty similar to that of io.js with one exception,
it supports all of Electron libraries since it's running
in Electron! So you don't need to mock those libraries out anymore and can actually write tests to integrate with them.
If you run:
electron-mocha --renderer ./tests
This runs the tests in the renderer
.
Yes, this means that you have access to the entirety of the DOM, web storage, etc. This is because it's actually
running in a Chromium process.
Your .travis.yml
will need two extra lines of configuration to run this headless on Travis:
before_script:
- export DISPLAY=:99.0; sh -e /etc/init.d/xvfb start
main
/renderer
from within
the same test file for the purposes of integration testing.MIT
FAQs
Mocha tests in Electron.
The npm package electron-mocha receives a total of 19,475 weekly downloads. As such, electron-mocha popularity was classified as popular.
We found that electron-mocha demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.