0
votes
3answers
66 views
Javascript: how to override public method in some class?
I have such JS class:
SomeClass = function {
// some stuff that uses initRequest
this.initRequest = function() {
if (window.XMLHttpRequest) {
return new …
0
votes
2answers
43 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 …
0
votes
5answers
437 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 …
0
votes
1answer
101 views
JsUnit Distributed Testing with Multiple Browsers
I am running a distributed JsUnit test, and everything is fine unless I specify more than one browser under browserFileNames in the remote machine's build.xml. A standalone test on that same machine …
2
votes
1answer
399 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 …
0
votes
1answer
54 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 …
