Has anyone successfully put JSUnit into their automatic build process with CruiseControl? Specifically, I want to use the remote testing capabalities to run...
Hi all, is there a step by step howto on how to integrate jsunit-tests for a given project into cruisecontrol. Regarding to the jsunit-website it was...
AFAIK JSUnit has ANT Tasks that one can use in a build script. Since CruiseControl runs ANT build scripts, all one would have to do is write a CC script that...
Hi, I've just started using JSUnit and it looks like it's going to be pretty useful for us! A quick question though - the code in the head looks quite...
The docs will point you toward easily calling remote jsunit servers to run your tests, and this will integrate into CruiseControl. However, the list of tests...
Is there a reason for implementing suite() in StandaloneTest? It overrides browserFileNames() and returns the browser *display names* instead. That causes...
Hi all, Can someone tell me where I can find some documentation on the setUp() function or some examples that use this function? Best Regards, Catalin...
Has any work been done on collating distributed test results? As far as I can tell, the results remain on the machines running 'ant server' as a log file per...
... Hi Chris, I havn't tested it myself, yet. But what about a ''...?submitResults=http://myserver:8080/jsunit/acceptor/...'' where myserver is dedicated to...
Ok, so I've found the aggregate server, which I assume is what I want, but as far as I can tell, there's no documentation whatsoever for any of this. The...
... Hi Jan, Thanks for your help. Yeah, I tried that, but it seemed to be ignored because there's a 'localhost' hardcoded in a couple of places in the server...
Sorry to not chime in earlier. You're right Chris - the AggregateServer will return the combined XML results of the remote machines' results, but it doesn't...
Hello, ... property ... <browser1-start-script>;<browser1-stop-script>,<browser2-start-script>;<browser2-stop-script>,... ... This feature does not appear to...
Hi, Has anyone been able to run JSUnit in IE7. Is there any configuration I need specifically for this? I already have turned "Enable native XMLHTTP support"...
I forgot to mention that I am trying to run with JUnit. [INFO,TestMgr] ==== Executing Test Suite: testCalendarJS ========== [INFO,TestMgr] Test class...
Hi, I'm a relative newbie to JSUnit. I am running it successfully on some tests we have developed over at OpenAjax Alliance (www.openajax.org) on Windows (IE...
Hi everybody, I have a function that takes an event as parameter. Now I'd like to test this function, but I do not know how to pass the event. The function is...
Hello, You can create an Object that acts as an event object: function testTest() { event = new Object(); event.target = "value"; var result = test(event); ...
You have two way for that case. First, you can use mock object. Just create new Object and set the attributes needed. for example, if the function need ...
Hi, i don't know how to test number equality: assertEquals(new Number(1), new Number(1)); returns Expected <1> (Number) but was <1> (Number) ... similar: var...
Hi: I'm very glad to jsunit,It's very great. I find the plugin for eclipse but can't find any plugin for IntelliJ IDEA,I write javascript with intellij...
Hi, Yes, a plugin for IntelliJ is on the roadmap. It's been lowered a bit in priority, though, because IntelliJ 6 has the ability to display web pages - ...