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
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
1answer
67 views

Getting JSUnit, Ant & Hudson working

I'm trying to get my JSUnit tests to run on Hudson. But the browser keeps timing out: [junit] INFO: Launching Internet Explorer on ...
1
vote
0answers
110 views

any new firefox 3.5.X security improvements that'd prevent access “chrome://” uri paths in markup?

A little context: I'm trying to build and run the unit tests for the source of the Selenium IDE plugin. Everything builds correctly (through maven commands, et al) and the unit tests fire up an ...
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
653 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) { ...