arunoda / laika

testing framework for meteor
http://arunoda.github.io/laika/
MIT License
242 stars 38 forks source link

Only Partial Mocha Support? #134

Open iansinnott opened 10 years ago

iansinnott commented 10 years ago

I thought Laika just runs on top of Mocha while providing a bunch of useful meteor-specific features. But I've run into a few things that don't seem to work in Laika such as skipping tests, or using placeholder tests:

it("Placeholder test..");
it.skip("This test isn't ready yet, so skipping", function(done, server, client) {
  // Test code in here...
});

The code above breaks my tests. Any way to update this so that it supports everything in Mocha?

apendua commented 9 years ago

@iansinnott Not yet. The problem is that we're currently bounded to a Arunoda's fork of the original mocha and also laika is overwriting some mocha original functions. We are currently working on fixing this problem.