From 21f2f4b340a3cb83ea904123916ceeb0091274fe Mon Sep 17 00:00:00 2001 From: Saeed <30327843+key1989han@users.noreply.github.com> Date: Mon, 13 Jul 2026 07:38:51 +0330 Subject: [PATCH] test: add basic test suite --- test.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test.js 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"); + }); +});