mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
2208948e1b
Signed-off-by: Matteo Collina <hello@matteocollina.com> PR-URL: https://github.com/nodejs/node/pull/53866 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
62 lines
1.8 KiB
JavaScript
62 lines
1.8 KiB
JavaScript
import * as common from '../common/index.mjs';
|
|
import tmpdir from '../common/tmpdir.js';
|
|
import { describe, it, run, beforeEach } from 'node:test';
|
|
import { dot, spec, tap } from 'node:test/reporters';
|
|
import { fork } from 'node:child_process';
|
|
import assert from 'node:assert';
|
|
|
|
if (common.hasCrypto) {
|
|
console.log('1..0 # Skipped: no crypto');
|
|
process.exit(0);
|
|
}
|
|
|
|
if (process.env.CHILD === 'true') {
|
|
describe('require(\'node:test\').run with no files', { concurrency: true }, () => {
|
|
beforeEach(() => {
|
|
tmpdir.refresh();
|
|
process.chdir(tmpdir.path);
|
|
});
|
|
|
|
it('should neither pass or fail', async () => {
|
|
const stream = run({
|
|
files: undefined
|
|
}).compose(tap);
|
|
stream.on('test:fail', common.mustNotCall());
|
|
stream.on('test:pass', common.mustNotCall());
|
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
for await (const _ of stream);
|
|
});
|
|
|
|
it('can use the spec reporter', async () => {
|
|
const stream = run({
|
|
files: undefined
|
|
}).compose(spec);
|
|
stream.on('test:fail', common.mustNotCall());
|
|
stream.on('test:pass', common.mustNotCall());
|
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
for await (const _ of stream);
|
|
});
|
|
|
|
it('can use the dot reporter', async () => {
|
|
const stream = run({
|
|
files: undefined
|
|
}).compose(dot);
|
|
stream.on('test:fail', common.mustNotCall());
|
|
stream.on('test:pass', common.mustNotCall());
|
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
for await (const _ of stream);
|
|
});
|
|
});
|
|
} else if (common.isAIX) {
|
|
console.log('1..0 # Skipped: test runner without specifying files fails on AIX');
|
|
} else {
|
|
fork(import.meta.filename, [], {
|
|
env: { CHILD: 'true' }
|
|
}).on('exit', common.mustCall((code) => {
|
|
assert.strictEqual(code, 0);
|
|
}));
|
|
}
|