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(1, 1); }); そして、以下のコマンドで実行される $ node --test demo.test.…