PR-URL: https://github.com/nodejs/node/pull/62282 Reviewed-By: Aviv Keller <me@aviv.sh> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
10 lines
197 B
JavaScript
10 lines
197 B
JavaScript
'use strict';
|
|
const { describe, it } = require('node:test');
|
|
|
|
describe('should fail', () => {
|
|
throw new Error('error in describe');
|
|
});
|
|
|
|
describe('should pass', () => {
|
|
it('ok', () => {});
|
|
});
|