hi, i have test page in my c:\test\proj location also jsunit files. now i want to automate this test file with Maven. can anyone tell me how i do this. ... ...
When testing Ajax Animation, sometimes we need to wait several seconds for the animation to take place before doing the assert. What is the best way to do...
Motivation can be found at : http://code.google.com/p/jsunit-ext/ In order to try the demo (you may need to use Internet explorer as in firefox you would see...
im reposting this problem becoz still im having that problem. i used maven to automate jsunit test in build. so i wrote a class by extending StandaloneTest...
hi all maybe someone could help me I have downloaded jsunit and the eclipse plugin and everything seems to be well configured... (I can reach the jsunit view...
hi all It would be really appreciated if someone could post a basic way of configuring and integrating the jsunuit plugin into eclipse. I must be doing...
Hi Ross, i went through the list but still i could find the correct way to do this. now im using only pom for this. no any class for automation i used <plugin>...
JSUnit 2.2. has been in alpha for over a year, is there a plan or schedule to update this to a beta or full release? I plan to use JSUnit in our developement...
We're using JSUnit 2.2. On a project I'm working on, the developer decided to write all of their tests in .js files and load them into HTML like so: <html> ...
Have you tried using the setTimeout() function? Just do a web search for that function name and you should find all the documentation you need on it. -Doug...
Doug, The problem with setTimeout is that it does not stop the thread of execution. It only calls the function specified in setTimeout after the timeout...
It sounds like from your test, you're trying to some code in a separate thread, then wait until it's done, and then assert something about it. Is that...
Edward, Thanks for your reply. Can you explain what you mean by " write tests for the individual objects involved in the code". Here, the individual object ...
The problem is that JSUnit can't test asynchronous things (to the best of my knowledge), due to the xUnit pattern of execution and the single threaded nature...
In case it helps, and I'm not sure it does for the case under discussion here, JsUnit does support testing asynchronous functions. There's a library that...
What I mean here is that it sounded like you were treating your code as a black box - you're calling a method that kicks off some functionality, and then ask...
yes -- I would like to see this as well. I am running eclipse 3.3.1 on KUbuntu now. Here is what I've done to try to get the eclipse plugin working: 1.)...
This example in the power point did not work for me. To get the test to pass I had to alter the method as follows: function multiplyAndAddFive(arg1, arg2) { ...
Has anyone used jsunit to run tests via vmware? For example, I'm running vmware on my Mac under OS/X in order to test MS Win/IE. Can this configuration be...
I am a newbie to jsunit and unit testing in general. I wonder if it is possible to use jsunit to test a JS module that sets and alters both browser cookies...
... I wanted to update my post to indicate that after further reading I now know that jsunit is well-suited to instantiate multiple OS/browser combinations....
JsUnit is designed to automate JavaScript, not browser behavior. It is actually impossible to activate browser behaviors from JavaScript as those things would...
Hello *, I searched this mailinglist and the documentation, but couldnt find a working example, that shows how to setup a JUnit Testcase, that starts a JsUnit...