There was an error while loading. Please reload this page.
1 parent 7d55ce1 commit ac5f523Copy full SHA for ac5f523
1 file changed
tests/node.test.js
@@ -0,0 +1,9 @@
1
+import { describe, test } from 'node:test'
2
+import assert from 'node:assert/strict'
3
+
4
+describe('example test', () => {
5
+ test('first test', () => {
6
+ assert.strictEqual(1, 1)
7
+ assert.notStrictEqual(1, 2)
8
+ })
9
+})
0 commit comments