Files
2026-05-26 23:36:42 -07:00

13 lines
204 B
JavaScript

'use strict';
const { test } = require('node:test');
const common = require('./common');
function notCalled() {
}
test('first 1', () => {
common.fnA();
common.fnD(100);
common.fnB([1, 2, 3]);
});