We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11ad002 commit 37da4b4Copy full SHA for 37da4b4
.npmignore
@@ -1,3 +1,5 @@
1
.npmignore
2
3
src/test/
4
+
5
+test/
test/index.ts
@@ -0,0 +1,11 @@
+import assert from "node:assert";
+import test from "node:test";
+import { isTest } from "../src/lib/index.js";
6
7
+test("test", () => {
8
+ const check = isTest('TEST')
9
10
+ assert.equal(check, true);
11
+});
0 commit comments