Tagged Questions
4
votes
1answer
88 views
Javascript unit testing with V8
Currently, I am using PhantomJS for running Javascript unit tests in QUnit and Sinon framework on our build server.
But, PhantomJS uses JavaScriptCore with JIT compiler as its Javascript engine. ...
0
votes
0answers
21 views
grunt qunit in conjunction with grunt server
While running grunt server for developing, How can I separately use tehe grunt qunit task to run the tests.
While trying to pass ["test/**/*.html"] to the all property, but that fails to run and ...
2
votes
0answers
83 views
QUnit and PhantomJS testing of AJAX requests only works through proxy
I'm attempting to use grunt-contrib-qunit to run a pre-existing suite of qunit tests (testing parsing of ajax request results) in headless mode with Phantom on Windows 8.
The tests complete fine in ...
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
...
0
votes
1answer
64 views
is there a way to execute phantomJS statements in chutzpah?
I'm running some Qunit tests to test a framework. I'm not able to fetch the cookies from phantomJS as my test hangs there. It's not able to read cookies.
I tried to fetch the fetch phantom cookies ...
0
votes
0answers
54 views
PhantomJS cookie storing
Does phantomJS store the cookies in a different pattern than the other browsers? (I was comparing the two cookie output files of crome and phantomjs and they were different).
I'm trying to retrieve ...
3
votes
1answer
55 views
Does phantomJS support geolocations?
I'm trying to run qunit test cases with PhantomJS. One of my tests are hanging in when phantomJS try to access the navigator.geolocation function of DOM. same test is working fine in the browser, just ...
0
votes
1answer
67 views
PhantomJS Cookies
I'm trying to run some QUnit test cases with phantomJS and chutzpah console. I'm having difficulties communicate with the phantomJS cookies. My test case runs perfectly with the browser communicating ...
4
votes
0answers
82 views
QUnit + PhantomJS: asyncTest never returns
I've run into a problem when trying to setup PhantomJS, so I could do continuous integration on my JavaScript project via Travis CI.
Basically, even the simplest asyncTest just never returns. It ...
0
votes
2answers
93 views
Is there a way to delay the start of a QUnit test suite?
I'm trying to troubleshoot a unit test issue.
I used to have a mostly working Maven -> PhantomJS -> Qunit setup, but it was unpredictable so I took it apart to try to fix it.
I upgraded the ...
0
votes
1answer
50 views
Qunit shows the result from another test
I would like to use unit testing for JavaScript in TeamCity.
I am using QUnit, phantomjs and QUnitTeamCityDriver.
But I have some problem. I get the following test result:
##teamcity[testFailed ...
2
votes
0answers
283 views
QUnit tests fail on Travis CI (running on phantomjs with grunt.js)
We've introduced CI system with travis CI to our open source project enchant.js on JavaScript.
https://github.com/wise9/enchant.js
We like qunit tests and we're running them with grunt.js (npm), but ...
3
votes
2answers
357 views
How to run QUnit test and get back test result in C# via JavaScript callback?
In my several projects, I use MVC pattern for separating code (of concerns) into 3 tiers. Both of Model and Control tiers run on C# so I use testing framework like MSTest or NUnit to validate ...
1
vote
1answer
187 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
456 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 ...
2
votes
3answers
986 views
PhantomJS QUnitTeamCityDriver QUnit test run
I would like to use unit testing for JavaScript in TeamCity.
I am using QUnit, and I have seen a couple of places that suggest using phantomjs and QUnitTeamCityDriver. I just have not been able to ...
1
vote
1answer
382 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 ...
0
votes
1answer
894 views
Running asynchronous QUnit tests from Ant in PhantomJS
I am attempting to get a set of asynchronous QUnit tests to run from an Ant build script, using PhantomJS. What I have seems to be working, but it seems like there should be a nicer way to achieve it.
...
7
votes
3answers
3k views
Better way to integrate maven/qunit/phantomjs?
I have been investigating the best way to do JS unit testing in our maven CI environment. What I currently have cobbled together is the following in my maven project:
qunit resources (JS/CSS files)
...
1
vote
0answers
497 views
Running PhantomJS with QUnit and ANT [closed]
I am trying to integrate QUnit testing into my build system using ANT & PhantomJS, and I seem to be hitting a path issue.
While this command works
c:\tools\phanotmjs\phantomjs.exe ...
