1
vote
0answers
58 views

Proxy configuration for PhantomJS through grunt (qunit)

I'm attempting to run integration tests via grunt-contrib-qunit. I've set the --proxy flag via the options object, every ajax request returns a 404 (not found) error. Gruntfile.js ...
1
vote
0answers
28 views

Specify QUnit module when run with Grunt

I'm using Grunt, PhantomJS, and the "watch" plugin to run my QUnit tests while I develop (separate from CI). I'd like to be able to focus on a specific QUnit module while I'm working on the code that ...
1
vote
2answers
132 views

Running node commands as part of a grunt driven QUnit test

I'm using grunt to package my jQuery plugin. As part of the QUnit tests, I need to run a node command before the tests start to get a consistent result (something like process.env.TZ = 'Europe/London' ...
1
vote
1answer
188 views

Show JS errors in iframe during qunit testing within phantomjs

I am developing a cross-domain RPC library for which I want to do some unit-testing using qunit. In order to do the testing properly I've setup a grunt file that launches a node.js server and ...
0
votes
1answer
150 views

Grunt qunit fails but browser version works just fine

I'm using latest versions of grunt, qunit with the folowing test: module('jQuery#FilteringTool', { setup: function() { this.elems = $('#qunit-fixture').children(); ...
0
votes
1answer
459 views

How can I specify the PATH to PhantomJS using GRUNT and QUNIT?

Grunt uses PhantomJS to run headless QUnit tests in a very interesting way (correct me if I'm wrong please). Since I just started experimenting with those tools I don't fully understand it and don't ...
1
vote
1answer
384 views

Discrepancy between PhantomJS and Qunit test in Grunt?

I'm writing my first jQuery plugin with Grunt and TDD, and its been awesome so far. All of my tests are passing in the browser, and all but this one are passing in phantomjs/qunit. But I'm sure I'm ...