Gathering detailed insights and metrics for gulp-qunits
Gathering detailed insights and metrics for gulp-qunits
Gathering detailed insights and metrics for gulp-qunits
Gathering detailed insights and metrics for gulp-qunits
Run hybrid unit tests through QUnit in a headless PhantomJS instance, as well as directly in Node.js – Forked from https://github.com/jonkemp/gulp-qunit but developed as a separate project for use in http://paperjs.org.
npm install gulp-qunits
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
4 Stars
140 Commits
1 Forks
1 Watchers
2 Branches
13 Contributors
Updated on Nov 21, 2021
Latest Version
2.1.2
Package Id
gulp-qunits@2.1.2
Size
5.62 kB
NPM Version
5.3.0
Node Version
8.6.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
5
3
Run hybrid unit tests through QUnit in a headless PhantomJS instance, as well as directly in Node.js. Forked from gulp-qunit but developed as a separate project, for use in paper.js.
Install with npm
1$ npm install --save-dev gulp-qunits
1var gulp = require('gulp'), 2 qunits = require('gulp-qunits'); 3 4gulp.task('test', function() { 5 return gulp.src('test-runner.html', cwd: 'qunit' ) 6 .pipe(qunits()); 7});
With options:
1var gulp = require('gulp'), 2 qunit = require('gulp-qunits'); 3 4gulp.task('test', function() { 5 return gulp.src('test-runner.html', cwd: 'qunit' ) 6 .pipe(qunits({ arguments: ['--ssl-protocol=any']})); 7});
1var gulp = require('gulp'), 2 qunits = require('gulp-qunits'); 3 4gulp.task('test', function() { 5 return gulp.src('test-runner.js', cwd: 'qunit' ) 6 .pipe(qunits()); 7});
With additional, optionally name-spaced requires:
1var gulp = require('gulp'), 2 qunit = require('gulp-qunits'); 3 4gulp.task('test', function() { 5 return gulp.src('test-runner.js', cwd: 'qunit' ) 6 .pipe(qunits({ 7 require: [ 8 { path: '../dist/paper-full.js', namespace: 'paper' } 9 ], 10 timeout: 20 11 })); 12});
Type: Number
Default: 5
Pass a number or string value to override the default timeout of 5 seconds.
Type: Array
Default: undefined
The arguments to be passed on to forked process, e.g. PhantomJS. See the PhantomJS documentation for more information.
Type: Boolean
Default: false
Causes QUnit to make a list of all properties in the global scope, before and after each test, and then checks for differences. If properties are added or removed, the test will fail, listing the difference. This helps to make sure your test code and code under test doesn't accidentally leak into the global scope. Currently this only works in the PhantomJS QUnit Runner.
MIT © Jürg Lehni
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 3/27 approved changesets -- score normalized to 1
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More