1'use strict'; 2const { test } = require('node:test'); 3const common = require('./common'); 4 5test('second 1', () => { 6 common.fnB([1, 2, 3]); 7 common.fnD(3); 8}); 9