Files
Kmake/test/fixtures/test-runner/print-arguments.js

6 lines
161 B
JavaScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
const { test } = require('node:test');
test('process.argv is setup', (t) => {
t.assert.deepStrictEqual(process.argv.slice(2), ['--a-custom-argument']);
});