Gathering detailed insights and metrics for gulp-qunit
Gathering detailed insights and metrics for gulp-qunit
Gathering detailed insights and metrics for gulp-qunit
Gathering detailed insights and metrics for gulp-qunit
gulp-mocha
Run Mocha tests
gulp-qunit-harness
Gulp plugin for running qunit tests on a local machine and in the SauceLabs environment.
@hh.ru/gulp-qunit-runner
run qunit tests with gulp
gulp-qunits
Run hybrid unit tests through QUnit in a headless PhantomJS instance, as well as directly in Node.js.
npm install gulp-qunit
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
MIT License
24 Stars
151 Commits
19 Forks
4 Watchers
1 Branches
11 Contributors
Updated on Oct 18, 2021
Latest Version
3.0.1
Package Id
gulp-qunit@3.0.1
Unpacked Size
8.98 kB
Size
3.29 kB
File Count
4
NPM Version
8.1.2
Node Version
16.13.2
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
Run QUnit unit tests in a headless PhantomJS instance.
Run QUnit unit tests in a PhantomJS-powered headless test runner, providing basic console output for QUnit tests. Uses the phantomjs node module and the PhantomJS Runner QUnit Plugin.
Inspired by the grunt plugin grunt-contrib-qunit.
Install with npm
1$ npm install --save-dev gulp-qunit
1var gulp = require('gulp'), 2 qunit = require('gulp-qunit'); 3 4gulp.task('test', function() { 5 return gulp.src('./qunit/test-runner.html') 6 .pipe(qunit()); 7});
With options:
1var gulp = require('gulp'), 2 qunit = require('gulp-qunit'); 3 4gulp.task('test', function() { 5 return gulp.src('./qunit/test-runner.html') 6 .pipe(qunit({'phantomjs-options': ['--ssl-protocol=any']})); 7});
With page options:
1var gulp = require('gulp'), 2 qunit = require('gulp-qunit'); 3 4gulp.task('test', function() { 5 return gulp.src('./qunit/test-runner.html') 6 .pipe(qunit({'page': { 7 viewportSize: { width: 1280, height: 800 } 8 }})); 9});
You no longer need this plugin to run QUnit tests in your gulp tasks. Now you can do this with node-qunit-phantomjs, a stand alone module. It can also be used via command line, and it has an option for more verbose test reporting.
1var gulp = require('gulp'), 2 qunit = require('node-qunit-phantomjs'); 3 4gulp.task('test', function() { 5 qunit('./qunit/test-runner.html'); 6});
With phantomjs2:
1var gulp = require('gulp'), 2 qunit = require('gulp-qunit'); 3 4gulp.task('test', function() { 5 return gulp.src('./qunit/test-runner.html') 6 .pipe(qunit({'binPath': require('phantomjs2').path})); 7});
Type: Number
Default: 5
Pass a number or string value to override the default timeout of 5 seconds.
Type: Array
Default: None
These options are passed on to PhantomJS. See the PhantomJS documentation for more information.
Type: Object
Default: None
These options are passed on to PhantomJS. See the PhantomJS documentation for more information.
Type: String
Default: require("phantomjs").path
The option is used to execute phantomjs binary path
Type: String
Default: require.resolve('qunit-phantomjs-runner')
This option is used to configure the test runner used to control phantomjs
MIT © Jonathan Kemp
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
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
Reason
30 existing vulnerabilities detected
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