• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict';
2const { test } = require('node:test');
3const common = require('./common');
4
5function notCalled() {
6}
7
8test('first 1', () => {
9  common.fnA();
10  common.fnD(100);
11  common.fnB([1, 2, 3]);
12});
13