Files
Kmake/test/fixtures/test-runner/plan/plan-via-options.mjs
2026-05-26 23:36:42 -07:00

10 lines
209 B
JavaScript

import test from 'node:test';
test('failing planning by options', { plan: 1 }, () => {
// Should fail - no assertions
});
test('passing planning by options', { plan: 1 }, (t) => {
t.assert.ok(true);
});