2013-09-05 00:29:15 +00:00
|
|
|
describe("System check", function () {
|
2013-09-25 05:52:57 +00:00
|
|
|
it("Snap exists", function () {
|
|
|
|
expect(Snap).to.be.a("function");
|
2013-09-05 00:29:15 +00:00
|
|
|
});
|
|
|
|
it("eve exists", function () {
|
|
|
|
expect(eve).to.be.a("function");
|
|
|
|
});
|
|
|
|
it("mina exists", function () {
|
|
|
|
expect(mina).to.be.a("function");
|
|
|
|
});
|
|
|
|
});
|