Search the web
Sign In
New User? Sign Up
jsunit
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 999 - 1028 of 1225   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
999
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. ... ...
sanjeewanan
Online Now Send Email
Nov 1, 2007
3:19 pm
1000
... i think the problem is in my pom, can u show ur pom file for this...
sanjeewanan
Online Now Send Email
Nov 1, 2007
3:19 pm
1001
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...
nima_dilmaghani
Offline Send Email
Nov 2, 2007
4:02 am
1002
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...
Kapil Sachdeva
ksachdeva17
Offline Send Email
Nov 2, 2007
4:02 am
1003
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...
sanjeewanan
Online Now Send Email
Nov 2, 2007
3:41 pm
1004
Anyone? I guess I'll have to work it out for myself....
hemlockultimate
Offline Send Email
Nov 3, 2007
7:50 pm
1005
Nice, I'm actually using Ext and JSUnit in my project so I'll probably adopt it (eventually.)...
hemlockultimate
Offline Send Email
Nov 10, 2007
6:53 pm
1006
Sorted it, its a bug in Konqueror: http://bugs.kde.org/show_bug.cgi?id=71506...
hemlockultimate
Offline Send Email
Nov 10, 2007
6:53 pm
1007
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...
michael protech
cuencabacan
Offline Send Email
Nov 10, 2007
6:53 pm
1008
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...
cuencabacan
Offline Send Email
Nov 10, 2007
6:54 pm
1009
what is Ext? ... -- Nima...
nima dilmaghani
nima_dilmaghani
Offline Send Email
Nov 11, 2007
4:59 pm
1010
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>...
Sanjeewana
sanjeewanan
Online Now Send Email
Nov 11, 2007
9:22 pm
1011
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...
iwov_waltertam
Online Now Send Email
Nov 13, 2007
5:22 am
1012
We're working on it. For now you should use 2.2. We should have 2.2 out by the end of the year....
Edward Hieatt
edwardhieatt
Offline Send Email
Nov 13, 2007
5:31 am
1013
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> ...
Dan Fabulich
dfabulich
Offline Send Email
Nov 17, 2007
2:38 am
1014
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
schroedk
Offline Send Email
Nov 17, 2007
5:41 pm
1015
This is a known limitation of IE; the reason we wrote exposeTestFunctionNames was to get around it....
Edward Hieatt
edwardhieatt
Offline Send Email
Nov 17, 2007
6:07 pm
1016
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...
nima dilmaghani
nima_dilmaghani
Offline Send Email
Nov 18, 2007
3:57 pm
1017
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 Hieatt
edwardhieatt
Offline Send Email
Nov 18, 2007
4:05 pm
1018
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 ...
nima dilmaghani
nima_dilmaghani
Offline Send Email
Nov 19, 2007
3:31 am
1019
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...
Harlan Iverson
loopyfx
Online Now Send Email
Nov 19, 2007
4:50 am
1020
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...
Edward Hieatt
edwardhieatt
Offline Send Email
Nov 19, 2007
4:59 am
1021
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...
Edward Hieatt
edwardhieatt
Offline Send Email
Nov 19, 2007
5:01 am
1022
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.)...
Doug
schroedk
Offline Send Email
Nov 22, 2007
4:35 am
1023
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) { ...
tony_t_tubbs
Offline Send Email
Dec 14, 2007
4:56 pm
1024
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...
seleneplatt
Online Now Send Email
Dec 21, 2007
8:52 pm
1025
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...
seleneplatt
Online Now Send Email
Dec 21, 2007
8:53 pm
1026
... 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....
seleneplatt
Online Now Send Email
Dec 21, 2007
9:03 pm
1027
JsUnit is designed to automate JavaScript, not browser behavior. It is actually impossible to activate browser behaviors from JavaScript as those things would...
Michael Avrukin
amichaela
Offline Send Email
Dec 21, 2007
10:27 pm
1028
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...
markrambow
Offline Send Email
Dec 23, 2007
8:42 pm
Messages 999 - 1028 of 1225   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help