jsUnit, great tool. thx I have found that as the eclipse plugin uses the external browser it is has some annoying behaviours, at least for quickly running...
s = (""+window.location).replace("file:///C:…",'localhost'); if (s.indexOf("cacheBuster")<0) window.location = `http://localhost/jsunit/testRunner.html? ...
Hi to all, I am testing simple javascript example using jsunit.I have not seen any bar. What to write in "Enter the file name of test page to be run" in...
Hello everyone. I have run into an issue trying to run the standalone server. I invoke it through the command "ant standalone_test", which results in a ...
Yeah, I found out later that the version used to compile it was 1.5. I opened the jar file in a ZIP editor and looked in the manifest file. The funny thing is,...
Hi, I struggled with the same problem for a while, and finally came up with a solution. Safari seems to use the file scheme instead of the http scheme for...
Hello, I am working on implementing JsUnit in server mode. I have configured a central server that runs JsUnit in farm server mode, and currently have one...
hi all, I made the required changes in build.xml as the documentation of the project. but when i tried to execute ... I got an error complaining about a...
Hi, I had the same issue using test suites. I wanted to load pages into the suite that were relative to the suite, not to the testRunner. I also wanted to...
Hi! At the moment I'm running my JsUnit tests with the ant tasks "standalone_test" and "distributed_test". Everthing runs prefect! I read in the documentation...
Hi Chris, I do that very thing, using a suite. Simply extend TestCase and define a suite() method: public static Test suite() { TestSuite suite = new...
Hi Ross, at first thank you very much for your reply! When I run the test from JUnit I get an initializationError. JUnit doesn't use the properties in...
Chris, You are correct; JUnit doesn't use (nor know about) build.xml. Those properties in build.xml are actually just set as system properties by ant. What I...
Hi everyone, Thanks to a suggestion from Dean McNamee and Dan Pupius, we've improved the way JsUnit detects test functions in IE. Previously, JsUnit was forced...
Hello, I have code to download a file to a portable mp3 player and want to test it, but the download function returns right away, sending back information via...
... JsUnit is designed to not let you hold up the test runner (it's designed for fast, focused unit tests). But that doesn't mean it can't help you in this...
Chris, I have not seen the problem you describe. I use maven as a build system, which launches JUnit for me. I'm guessing it does some initialization. The...
I am running Eclipse on Vista, and have gotten the JsUnit test runner and plugin successfully working, save one exception. The plugin does not work with IE7....
I have a Firefox extension, originally based on a Greasemonkey script and now grown into a behemoth. I'm looking for UT tools. I've not done any Javascript...
I m using jsunit to test my application.. at present i m using testrunner.html to run the tests... PLease tell me any one how to automate jsunit. thanks in...
Sometimes I have noticed that JSUnit will show errors when running a test even if the errors have already been caught an dealt with within a try/catch block. ...
Edward -- Since Greasemonkey scripts are just plain old JavaScript, they're definitely testable using using JsUnit. I haven't played with Firefox extensions...