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 - ...
For my libraries, I write my own test pages. For example, http://www.javascripttoolbox.com/lib/util/test.php I'm considering switching to jsUnit because it...
... Hi Marcel, 1 and 1 are always equal, the question is if their subsequent containers (Number-Object in this case) is identical. a1 = new Number(1); a2 = new...
"frachmichdocheinfach" <joanis@...> wrote on Friday, February 02, ... Hi Marcel, I'd like to add that the important distinction is between the primitive ...
Hi again, shouldn't assertEquals(new Number(1), new Number(1)); do a a1.valueOf() === a2.valueOf() behind the scenes, that is what typically is excpected...
There actually has been quite a bit of work in this area. Currently the public farm exists and is stable, but wouldn't scale very well. I'd be interested in...
Hi, First I like to thank Edward and other contributors for this nice application. Now my question is how to get the embedded Jetty in JsUnit Server to start...
Hi all, I think we need a new logo for JsUnit. The current one is pretty old and not much effort was put into it. We need a cool new one. I'd like to open...
When running a TestPage in JsUnit in IE (7) from the filesystem (file://), the Tests are not run on my machine. I tracked this problem down to the fact that...
Justin, dhwang, Thanks for your suggestions. I have the active content setting enabled and fiddling around with the MOTW did not yield any results. I did...
The reason that the functions need to be in the test page is that we haven't been able to find a way for IE to be able to discover functions that are in an...
When i run a standalone test on Windows XP, the call to IE 7 fails. I am using the *file* protocol. The issue in this case seems to be, that IE has a problem...
Hi: That's a good job!Thank you very much! Now I run my test with the testRunner.htm inside the IntelliJ IDE,But I find it's not convenient when I want test...