node/test/fixtures/test-runner/output/describe_nested.js
Raz Luvaton 1353681edf
test: remove --no-warnings flag in test_runner fixtures
no longer needed after #48915 fix

PR-URL: https://github.com/nodejs/node/pull/48989
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
2023-08-03 19:41:20 +00:00

9 lines
195 B
JavaScript

'use strict';
require('../../../common');
const { describe, it } = require('node:test');
describe('nested - no tests', () => {
describe('nested', () => {
it('nested', () => {});
});
});