test
Version:
Node.js 18's node:test, as an npm package
12 lines (10 loc) • 332 B
JavaScript
// https://github.com/nodejs/node/blob/3e57891ee2fde0971e18fc383c25acf8f90def05/test/message/test_runner_describe_nested.js
// Flags: --no-warnings
require('../common')
const { describe, it } = require('#node:test')
describe('nested - no tests', () => {
describe('nested', () => {
it('nested', () => {})
})
})