Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Unit-testing for those hard to reach places.
Uses Electron to provide a Mocha unit-testing environment which can be run headlessly or to debugged with DevTools. This was largely inspired by the electron-mocha and mocha-electron projects but didn't quite have the debugging features needed to develop tests.
var floss = require('floss');
gulp.task('test', function(done) {
floss.run('test/index.js', done);
});
Open tests in an Electron window where test can can be debugged with debugger
and dev tools.
gulp.task('test', function(done) {
floss.run({
path: 'test/index.js',
debug: true
}, done);
});
Additional properties can be passed to the test code by adding more values to the run options.
gulp.task('test', function(done) {
floss.run({
path: 'test/index.js',
customUrl: 'http://localhost:8080' // <- custom
}, done);
});
The test code and use the global options
property to have access to the run options.
console.log(options.customUrl); // logs: http://localhost:8080
Installed globally via npm install -g floss electron-prebuilt
.
floss --path test/index.js
Or installed locally:
node node_modules/.bin/floss --path test/index.js
Open tests in an Electron window where test can can be debugged with debugger
and dev tools.
floss --path test/index.js --debug
Some application may require a specific version of Electron. Floss uses Electron 1.0.0+, but you can specific the path to your own version. The custom version can be used either through the commandline argument --electron
, by setting the Node environmental variable ELECTRON_PATH
or by setting the run option electron
.
gulp.task('test', function(done) {
floss.run({
path: 'test/index.js',
electron: require('electron-prebuilt')
}, done);
});
floss --path test/index.js \
--electron /usr/local/bin/electron
ELECTRON_PATH=/usr/local/bin/electron floss --path test/index.js
Floss can be used with Travis CI to run Electron headlessly by utilizing Xvfb. Here's a sample of how to setup this project.
Note that scripts test
must be setup in your package.json;
{
"scripts": {
"test": "gulp test"
}
}
language: node_js
node_js:
- "4"
install:
- npm install xvfb-maybe
- npm install
before_script:
- export DISPLAY=':99.0'
- Xvfb :99 -screen 0 1024x768x24 -extension RANDR &
script:
- xvfb-maybe npm test
FAQs
Unit-testing for those hard to reach places
The npm package floss receives a total of 208 weekly downloads. As such, floss popularity was classified as not popular.
We found that floss demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 11 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.