15 lines
395 B
JavaScript
15 lines
395 B
JavaScript
describe("System check", function () {
|
|
it("Snap exists", function () {
|
|
expect(Snap).to.be.a("function");
|
|
});
|
|
it("eve exists", function () {
|
|
expect(eve).to.be.a("function");
|
|
});
|
|
it("mina exists", function () {
|
|
expect(mina).to.be.a("function");
|
|
});
|
|
it("elemental exists", function () {
|
|
expect(elemental).to.be.a("function");
|
|
});
|
|
});
|