I am facing a problem running Jasmin tests from IDEA Intellij JS Test driver.
I run the test using describe method. like this
describe("A suite", function() {
it("contains spec with an expectation", function() {
expect(true).toBe(true);
});
but the plug-in gives this error intellij: unable to attach test reporter to test framework or test framework quit unexpectedly.
When I create TestCase using
TestCase("GreeterTest", {
setUp:function () {
},
"test name":function () {
assertEquals(1, 2)
}
});
the test is run normally.
Is there any additional steps,other than Installing the plug in and download the adapters, I have to do in order to run Jasmin tests ?