Skip to content

Commit ac5f523

Browse files
committed
test: add simple node:test test
1 parent 7d55ce1 commit ac5f523

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

tests/node.test.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)