Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
2answers
196 views

Wrapping JsUnit in JUnit

I'm required to use JSUnit in my Spring-MVC project. It seems that I could write some test pages, include some of my js files, write some tests, and load up my pages with the testRunner. Fine. But ...
3
votes
1answer
131 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
17 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
152 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
64 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
1answer
96 views

jsUnit and build.xml

So I want a build.xml file that I can invoke from Hudson to run my jsUnit tests. However, the build.xml file has a few things that it needs to ... I guess run the unit tests. One of things it needs ...
1
vote
2answers
110 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 ...
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
0answers
9 views

jsunit integrate with hudson,the browser could not run, and time out , failed

Started by user Major [fd] $ cmd.exe /C '"C:\apache-ant-1.8.2\bin\ant.bat -file build.xml standalone_test && exit %%ERRORLEVEL%%"' Buildfile: C:\wamp\www\fd\build.xml standalone_test: [junit] ...
0
votes
0answers
9 views

error trying to run jsunit and Firefox 8

I keep getting the "so_and_so*.html timed out. Make sure that the file exists and is a Test Page.*" error trying to run a trivial 'get off the ground' test, even though I followed recommendations in ...
0
votes
1answer
160 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
0answers
88 views

JSUnit standalone_test failing with 'Reason: timed out'

I can run my test suite manually with the URL: file:///C:/projects/sts_1/parms/test/jsunit/testRunner.html?testPage=file:///C:/projects/sts_1/parms/test/jsunit_tests/testSuite.html&autoRun=true ...
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
256 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
652 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
1answer
142 views

Runnig JSUnit tests without a test suite

Is there a way to run JSUnit tests without specifying test suite file. I want to run all the tests in a particular package so that one does not have to remember to add any new test to the existing ...
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 ...