mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
test: migrate message v8 tests from Python to JS
PR-URL: https://github.com/nodejs/node/pull/50421 Fixes: https://github.com/nodejs/node/issues/47707 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
This commit is contained in:
parent
12766fc721
commit
65087c0486
@ -1,6 +1,6 @@
|
||||
'use strict';
|
||||
|
||||
require('../common');
|
||||
require('../../common');
|
||||
|
||||
function AsmModule() {
|
||||
'use asm';
|
30
test/parallel/test-node-output-v8-warning.mjs
Normal file
30
test/parallel/test-node-output-v8-warning.mjs
Normal file
@ -0,0 +1,30 @@
|
||||
import '../common/index.mjs';
|
||||
import * as fixtures from '../common/fixtures.mjs';
|
||||
import * as snapshot from '../common/assertSnapshot.js';
|
||||
import { describe, it } from 'node:test';
|
||||
|
||||
function replaceNodeVersion(str) {
|
||||
return str.replaceAll(process.version, '*');
|
||||
}
|
||||
|
||||
describe('v8 output', { concurrency: true }, () => {
|
||||
function normalize(str) {
|
||||
return str.replaceAll(snapshot.replaceWindowsPaths(process.cwd()), '')
|
||||
.replaceAll(/:\d+/g, ':*')
|
||||
.replaceAll('/', '*')
|
||||
.replaceAll('*test*', '*')
|
||||
.replaceAll('*fixtures*v8*', '*')
|
||||
.replaceAll('node --', '* --');
|
||||
}
|
||||
const common = snapshot
|
||||
.transform(snapshot.replaceWindowsLineEndings, snapshot.replaceWindowsPaths, replaceNodeVersion);
|
||||
const defaultTransform = snapshot.transform(common, normalize);
|
||||
const tests = [
|
||||
{ name: 'v8/v8_warning.js' },
|
||||
];
|
||||
for (const { name } of tests) {
|
||||
it(name, async () => {
|
||||
await snapshot.spawnAndAssert(fixtures.path(name), defaultTransform);
|
||||
});
|
||||
}
|
||||
});
|
Loading…
Reference in New Issue
Block a user