22 lines
557 B
JavaScript
22 lines
557 B
JavaScript
|
|
import assert from "assert";
|
||
|
|
import "../imports/api/tasks.tests.js";
|
||
|
|
|
||
|
|
describe("simple-todos-svelte", function () {
|
||
|
|
it("package.json has correct name", async function () {
|
||
|
|
const { name } = await import("../package.json");
|
||
|
|
assert.strictEqual(name, "simple-todos-svelte");
|
||
|
|
});
|
||
|
|
|
||
|
|
if (Meteor.isClient) {
|
||
|
|
it("client is not server", function () {
|
||
|
|
assert.strictEqual(Meteor.isServer, false);
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
if (Meteor.isServer) {
|
||
|
|
it("server is not client", function () {
|
||
|
|
assert.strictEqual(Meteor.isClient, false);
|
||
|
|
});
|
||
|
|
}
|
||
|
|
});
|