gulp-qunit icon indicating copy to clipboard operation
gulp-qunit copied to clipboard

Run QUnit unit tests in a headless PhantomJS instance.

Results 8 gulp-qunit issues
Sort by recently updated
recently updated
newest added

Hi, I am a maintainer of [impress.js](http://github.com/impress/impress.js) and I was looking for a way to run the [3D transform integration tests](https://github.com/impress/impress.js/tree/a1d6475bd5f31b46586ae73a5d6e995d3ca4732b/test) in Google Chrome. The problem is that `gulp-qunit` uses...

I'm not sure if this is a gulp-qunit problem, a gulp problem, or I'm holding it wrong. :-) My gulpfile is pretty standard: ``` var gulp = require('gulp'); var qunit...

In https://github.com/jonkemp/gulp-qunit/pull/13/files, the event was emitted to gulp stream. (because this binded to through) But in https://github.com/jonkemp/gulp-qunit/commit/734543fa81a725da1acfc91695e602de543b277b, the event was emitted to the child process. So users cannot listen to...

bug
help wanted

if we run `console.warn('..... function _Class() {....}')` during test, we will got ``` events.js:141 throw er; // Unhandled 'error' event ^ SyntaxError: Unexpected token o at Object.parse (native) at /Users/jareguo/firebox/fireball/node_modules/gulp-qunit/index.js:51:40...

I would like the ability to use the options located here: http://api.qunitjs.com/QUnit.config/. Something along the lines of this: ``` gulp.task('test:qunit', function() { return gulp.src(config.jsPath + '/tests/index.html') .pipe(qunit({hidepassed:true})); }); ```

I have troubles running this plugin. I a test runner has all tests passed then everything is ok, but when some test fails, the plugin ends with error: ``` [00:09:37]...

question

Is there a way to use QUnit's "Check for Globals" feature? I couldn't figure out a way to load it this way. But testing for leaked globals would be very...