mirror of
https://github.com/zebrajr/node.git
synced 2025-12-06 00:20:08 +01:00
PR-URL: https://github.com/nodejs/node/pull/60330 Refs: https://github.com/nodejs/node/issues/55390 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
13 lines
477 B
JavaScript
13 lines
477 B
JavaScript
// Test that the output of test-runner/output/dot_output_custom_columns.js matches
|
|
// test-runner/output/dot_output_custom_columns.snapshot
|
|
import '../common/index.mjs';
|
|
import * as fixtures from '../common/fixtures.mjs';
|
|
import { spawnAndAssert, specTransform, ensureCwdIsProjectRoot } from '../common/assertSnapshot.js';
|
|
|
|
ensureCwdIsProjectRoot();
|
|
await spawnAndAssert(
|
|
fixtures.path('test-runner/output/dot_output_custom_columns.js'),
|
|
specTransform,
|
|
{ tty: true },
|
|
);
|