Tagged Questions
9
votes
2answers
1k views
Javascript Unit Testing Frameworks?
Can anybody recommend a Javascript unit testing framework. I've found JsUnit (http://www.jsunit.net/) and will start evaluating it. I just thought it would be good to get some input from the ...
3
votes
1answer
133 views
Unit test a firefox extension?
I'm working on a Firefox extension and started building automated tests using jsUnit. I run into permission errors running the tests from the TestRunner as soon as my extension code refers to any ...
3
votes
1answer
716 views
How to specify a relative path for the jsUnit-ant-script?
JsUnit provides an ant-script with the target 'standalone_test'. This target uses the property url to identify the HTML-site, that executes the tests. These site is checked in, so that everyone should ...
2
votes
0answers
18 views
JsUnit ant build not finding jsunit/acceptor
I'm trying to create a distributed test using JsUnit. When I run my ant build (after having set the properties as I think they should be), the testrunner runs my test on my local machine. The tests ...
2
votes
1answer
153 views
How to test ajax with jsunit?
Did anybody write tests for ajax with jsunit? I don't now how to test asynchronous functions.
Could you please show me some examples?
Example.
I have function
var General = function() { }
...
1
vote
2answers
111 views
Must JsUnit Cases Reside Under the Same Directory as JsUnit?
I have installed JsUnit and a test case as follows:
/home/chernevik/Programming/JavaScript/jsunit
/home/chernevik/Programming/JavaScript/jsunit/testRunner.html
...
0
votes
1answer
166 views
avoid / capture / verify a Javascript alert when testing a method that displays one with qunit
I'm just starting using Qunit and would like to know whether is there a way to capture/verify/omit alerts, For example:
function to_test() {
alert("I'm displaying an alert");
return 42;
}
...
0
votes
2answers
133 views
Test for Bound event using JSUnit?
How can I test to see that an event handler is bound to a node using JSUnit?
Here's what I have:
var mynode = document.getElementById( "mynode" );
assertNotNull( mynode );
MyLibrary.attachEvent( ...
0
votes
2answers
188 views
JSunit usability
Is JSunit really a direct port of Junit to Javascript? So I have heard, but I am wondering why my company is not using it. My company has lots of smart minds, so If we are not using it I wonder if ...
0
votes
3answers
257 views
Error using JsUnit with Hudson
I've just started using the JsUnit plugin with Hudson. The JsUnit tests are passing, but when the JsUnit plugin runs against the test output it's creating this error:
[xUnit] [ERROR] - Couldn't ...
0
votes
4answers
654 views
Javascript: how to override public method in some class?
I have such JS class that have to be tested:
SomeClass = function {
// some stuff that uses initRequest
this.initRequest = function() {
if (window.XMLHttpRequest) {
...
0
votes
5answers
910 views
Getting Firefox 3 to work with JSUnit
Thus far this is what I've tried, I'm using Firefox 3.07
Make sure in about:config that the property browser.cache.check_doc_frequency is set to 1 which the browser interprets as "check for a new ...