Hi all:
I have a very strange case here when using QUnitAdaptor to test my QUnit tests. It actually passed a test which is supposed to fail:
test("very simple test", function() {
var somevar = true;
equals(somevar, false, "test");
});
The above test passed when I ran it after capturing browser programmatically.
Has anyone experienced the same problem? If so, how did you get around it? I'm using QUnitAdaptor1.1 with equiv.js, Asserts.js and JSTestDriver1.1.
Thanks!