diff --git a/test.js b/test.js new file mode 100644 index 00000000..07ccd799 --- /dev/null +++ b/test.js @@ -0,0 +1,12 @@ +// Basic tests +const assert = require("assert"); + +describe("Basic Tests", () => { + it("should pass", () => { + assert.strictEqual(1 + 1, 2); + }); + + it("should handle strings", () => { + assert.strictEqual("hello" + " world", "hello world"); + }); +});