test: add trailing commas in `test/message`

PR-URL: https://github.com/nodejs/node/pull/46372
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
Antoine du Hamel 2023-01-29 20:15:22 +02:00 committed by GitHub
parent aa8a2441cb
commit ac66a99cf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 15 additions and 16 deletions

View File

@ -79,7 +79,6 @@ overrides:
- internet/*.js
- js-native-api/*/*.js
- known_issues/*.js
- message/*.js
- node-api/*/*.js
- parallel/*.js
- parallel/*.mjs

View File

@ -29,7 +29,7 @@ main();
'-e',
main,
], {
env: { ...process.env }
env: { ...process.env },
});
if (child.status !== 0) {

View File

@ -31,7 +31,7 @@ main();
'-e',
main,
], {
env: { ...process.env }
env: { ...process.env },
});
if (child.status !== 0) {

View File

@ -4,7 +4,7 @@ const consoleDescriptor = Object.getOwnPropertyDescriptor(global, 'console');
Object.defineProperty(global, 'console', {
configurable: true,
writable: true,
value: {}
value: {},
});
require('../common');

View File

@ -270,7 +270,7 @@ it('custom inspect symbol fail', () => {
[util.inspect.custom]() {
return 'customized';
},
foo: 1
foo: 1,
};
throw obj;
@ -281,7 +281,7 @@ it('custom inspect symbol that throws fail', () => {
[util.inspect.custom]() {
throw new Error('bad-inspect');
},
foo: 1
foo: 1,
};
throw obj;

View File

@ -303,7 +303,7 @@ test('custom inspect symbol fail', () => {
[util.inspect.custom]() {
return 'customized';
},
foo: 1
foo: 1,
};
throw obj;
@ -314,7 +314,7 @@ test('custom inspect symbol that throws fail', () => {
[util.inspect.custom]() {
throw new Error('bad-inspect');
},
foo: 1
foo: 1,
};
throw obj;

View File

@ -28,7 +28,7 @@ test('top level test enabled', common.mustCall(async (t) => {
t.afterEach(common.mustCall());
await t.test(
'nested test runs because name includes PATTERN',
common.mustCall()
common.mustCall(),
);
}));

View File

@ -19,11 +19,11 @@ const cause5 = new Error('Object cause', {
message: 'Unique',
name: 'Error',
stack: 'Error: Unique\n' +
' at Module._compile (node:internal/modules/cjs/loader:827:30)'
}
' at Module._compile (node:internal/modules/cjs/loader:827:30)',
},
});
const cause6 = new Error('undefined cause', {
cause: undefined
cause: undefined,
});
console.log(cause4);

View File

@ -30,7 +30,7 @@ console.error('beginning');
try {
vm.runInThisContext('throw new Error("boo!")', {
filename: 'test.vm',
displayErrors: false
displayErrors: false,
});
} catch {
// Continue regardless of error.
@ -40,7 +40,7 @@ console.error('middle');
vm.runInThisContext('throw new Error("boo!")', {
filename: 'test.vm',
displayErrors: false
displayErrors: false,
});
console.error('end');

View File

@ -30,7 +30,7 @@ console.error('beginning');
try {
vm.runInThisContext('var 5;', {
filename: 'test.vm',
displayErrors: false
displayErrors: false,
});
} catch {
// Continue regardless of error.
@ -40,7 +40,7 @@ console.error('middle');
vm.runInThisContext('var 5;', {
filename: 'test.vm',
displayErrors: false
displayErrors: false,
});
console.error('end');