• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Flags: --no-warnings
2'use strict';
3require('../../../common');
4const { describe, it } = require('node:test');
5
6describe('nested - no tests', () => {
7  describe('nested', () => {
8    it('nested', () => {});
9  });
10});
11