UGA Boxxx
id:uggds
【Node.js】標準のtest runner
Node.jsが標準でtest runnerを搭載したのを思い出したので触ってみた nodejs.org 簡単に試すには、demo.test.mjsというファイルを作って以下を記載すれば良い import test from 'node:test'; test('synchronous passing test', (t) => { // This test passes because it does not throw an exception. assert.strictEqual(…