PR-URL: https://github.com/nodejs/node/pull/61573 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Aviv Keller <me@aviv.sh> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
7 lines
107 B
JavaScript
7 lines
107 B
JavaScript
import { test } from 'node:test';
|
|
|
|
test('a test!', () => {
|
|
if true {
|
|
// syntax error
|
|
}
|
|
});
|