mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
dbaef339aa
This commit updates the way the test runner processes 'only' tests when node:test files are run without the --test CLI. This is a breaking change. PR-URL: https://github.com/nodejs/node/pull/54881 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
93 lines
2.7 KiB
JavaScript
93 lines
2.7 KiB
JavaScript
'use strict';
|
|
require('../common');
|
|
const fixtures = require('../common/fixtures');
|
|
const assert = require('node:assert');
|
|
const { spawnSync } = require('node:child_process');
|
|
const { test } = require('node:test');
|
|
|
|
const fixture1 = fixtures.path('test-runner', 'no-isolation', 'one.test.js');
|
|
const fixture2 = fixtures.path('test-runner', 'no-isolation', 'two.test.js');
|
|
|
|
test('works with --test-only', () => {
|
|
const args = [
|
|
'--test',
|
|
'--test-reporter=tap',
|
|
'--experimental-test-isolation=none',
|
|
'--test-only',
|
|
fixture1,
|
|
fixture2,
|
|
];
|
|
const child = spawnSync(process.execPath, args);
|
|
const stdout = child.stdout.toString();
|
|
|
|
assert.strictEqual(child.status, 0);
|
|
assert.strictEqual(child.signal, null);
|
|
assert.match(stdout, /# tests 2/);
|
|
assert.match(stdout, /# suites 2/);
|
|
assert.match(stdout, /# pass 2/);
|
|
assert.match(stdout, /ok 1 - suite one/);
|
|
assert.match(stdout, /ok 1 - suite one - test/);
|
|
assert.match(stdout, /ok 2 - suite two/);
|
|
assert.match(stdout, /ok 1 - suite two - test/);
|
|
});
|
|
|
|
test('works without --test-only', () => {
|
|
const args = [
|
|
'--test',
|
|
'--test-reporter=tap',
|
|
'--experimental-test-isolation=none',
|
|
fixture1,
|
|
fixture2,
|
|
];
|
|
const child = spawnSync(process.execPath, args);
|
|
const stdout = child.stdout.toString();
|
|
|
|
assert.strictEqual(child.status, 0);
|
|
assert.strictEqual(child.signal, null);
|
|
assert.match(stdout, /# tests 2/);
|
|
assert.match(stdout, /# suites 2/);
|
|
assert.match(stdout, /# pass 2/);
|
|
assert.match(stdout, /ok 1 - suite one/);
|
|
assert.match(stdout, /ok 1 - suite one - test/);
|
|
assert.match(stdout, /ok 2 - suite two/);
|
|
assert.match(stdout, /ok 1 - suite two - test/);
|
|
});
|
|
|
|
test('works with --test-name-pattern', () => {
|
|
const args = [
|
|
'--test',
|
|
'--test-reporter=tap',
|
|
'--experimental-test-isolation=none',
|
|
'--test-name-pattern=/test one/',
|
|
fixture1,
|
|
fixture2,
|
|
];
|
|
const child = spawnSync(process.execPath, args);
|
|
const stdout = child.stdout.toString();
|
|
|
|
assert.strictEqual(child.status, 0);
|
|
assert.strictEqual(child.signal, null);
|
|
assert.match(stdout, /# tests 0/);
|
|
assert.match(stdout, /# suites 0/);
|
|
});
|
|
|
|
test('works with --test-skip-pattern', () => {
|
|
const args = [
|
|
'--test',
|
|
'--test-reporter=tap',
|
|
'--experimental-test-isolation=none',
|
|
'--test-skip-pattern=/one/',
|
|
fixture1,
|
|
fixture2,
|
|
];
|
|
const child = spawnSync(process.execPath, args);
|
|
const stdout = child.stdout.toString();
|
|
|
|
assert.strictEqual(child.status, 0);
|
|
assert.strictEqual(child.signal, null);
|
|
assert.match(stdout, /# tests 1/);
|
|
assert.match(stdout, /# suites 1/);
|
|
assert.match(stdout, /# pass 1/);
|
|
assert.match(stdout, /ok 1 - suite two - test/);
|
|
});
|