forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-common-debuglog.js
More file actions
39 lines (31 loc) · 922 Bytes
/
test-common-debuglog.js
File metadata and controls
39 lines (31 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
'use strict';
require('../common');
const assert = require('assert');
const fixtures = require('../common/fixtures');
const { spawnSync } = require('child_process');
const message = 'message';
{
process.env.NODE_DEBUG = 'test';
const { stderr } = spawnSync(process.execPath, [
fixtures.path('common-debuglog.js'),
message
], { encoding: 'utf8' });
assert.ok(stderr.toString().startsWith('TEST'));
assert.ok(stderr.toString().trim().endsWith(message));
}
{
delete process.env.NODE_DEBUG;
const { stderr } = spawnSync(process.execPath, [
fixtures.path('common-debuglog.js'),
message
], { encoding: 'utf8' });
assert.strictEqual(stderr.toString().trim(), '');
}
{
process.env.NODE_DEBUG = 'fs';
const { stderr } = spawnSync(process.execPath, [
fixtures.path('common-debuglog.js'),
message
], { encoding: 'utf8' });
assert.strictEqual(stderr.toString().trim(), '');
}