AppToDoList

This commit is contained in:
2021-12-01 09:16:49 +01:00
commit 10f70bb4c8
24 changed files with 1938 additions and 0 deletions

20
tests/main.js Normal file
View File

@@ -0,0 +1,20 @@
import assert from "assert";
describe("simple-todos-blaze", function () {
it("package.json has correct name", async function () {
const { name } = await import("../package.json");
assert.strictEqual(name, "simple-todos-blaze");
});
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);
});
}
});