If I'm not mistaken, you get this when you combine incorrect load
calls. JSTD with newer versions support load and test, while the version
bundled with the plugin only support load (in the config file). I might
be totally wrong here but I had an issue that went along this line ...
/ Fredrik
Did you ever find a fix for this - same problem myself. Have changed the config as suggested but to no avail. Version 1.3.4.e of the plugin, Indigo service release 2.
--To view this discussion on the web visit https://groups.google.com/d/msg/js-test-driver/-/WSdw96k9MMkJ.
You received this message because you are subscribed to the Google Groups "JsTestDriver" group.
To post to this group, send email to js-test...@googlegroups.com.
To unsubscribe from this group, send email to js-test-drive...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/js-test-driver?hl=en.
--
You received this message because you are subscribed to the Google Groups "JsTestDriver" group.
To view this discussion on the web visit https://groups.google.com/d/msg/js-test-driver/-/REJnyDo0HNwJ.
server: http://localhost:42442
load:
- js/*.js
- test/*.js
SInce I'm not sure what is wrong, it's hard to figure out a workaround.What does your config look like?
Does a simple hello world work?
On Tue, Apr 10, 2012 at 1:59 PM, gso ... wrote:
JSTestDriver on the download page appears is version 1.3.4.b, the Eclipse plugin is showing as 1.3.4.e (installing following the instructions on the plugin wiki page from http://js-test-driver.googlecode.com/svn/update/).`Help > Check for updates` did not find any updates.I could do to run some tests! Is there a workaround perhaps, I could do if at all possible not to have to open a shell up (am using a somewhat aggressively locked down Windows 7 machine at the moment).
On Tuesday, April 10, 2012 5:34:08 PM UTC+1, Cory Smith wrote:Have you updated to the latest?--To view this discussion on the web visit https://groups.google.com/d/msg/js-test-driver/-/REJnyDo0HNwJ.
You received this message because you are subscribed to the Google Groups "JsTestDriver" group.
To post to this group, send email to js-test-driver@googlegroups.com.
To unsubscribe from this group, send email to js-test-driver+unsubscribe@googlegroups.com.
On Tue, Apr 10, 2012 at 1:59 PM, gso ... wrote:
JSTestDriver on the download page appears is version 1.3.4.b, the Eclipse plugin is showing as 1.3.4.e (installing following the instructions on the plugin wiki page from http://js-test-driver.googlecode.com/svn/update/).`Help > Check for updates` did not find any updates.I could do to run some tests! Is there a workaround perhaps, I could do if at all possible not to have to open a shell up (am using a somewhat aggressively locked down Windows 7 machine at the moment).
On Tuesday, April 10, 2012 5:34:08 PM UTC+1, Cory Smith wrote:Have you updated to the latest?--To view this discussion on the web visit https://groups.google.com/d/msg/js-test-driver/-/REJnyDo0HNwJ.
You received this message because you are subscribed to the Google Groups "JsTestDriver" group.
To post to this group, send email to js-test-driver@googlegroups.com.
To unsubscribe from this group, send email to js-test-driver+unsubscribe@googlegroups.com.
function Hello() {this.who = undefined;}Hello.prototype.world = function() {this.who = "World";return this.who;};
HelloTest = TestCase("HelloTest");HelloTest.prototype.testWorld = function() {var greeter = new Hello();assertEquals("World", greeter.world());};