summaryrefslogtreecommitdiff
path: root/test/parallel/test-process-assert.js
blob: 74792eebb7bd2f20bc9af65bace2bf2240d5c087 (plain)
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
'use strict';
const common = require('../common');
const assert = require('assert');

common.expectWarning(
  'DeprecationWarning',
  'process.assert() is deprecated. Please use the `assert` module instead.',
  'DEP0100'
);

assert.strictEqual(process.assert(1, 'error'), undefined);
common.expectsError(() => {
  process.assert(undefined, 'errorMessage');
}, {
  code: 'ERR_ASSERTION',
  type: Error,
  message: 'errorMessage'
});
common.expectsError(() => {
  process.assert(false);
}, {
  code: 'ERR_ASSERTION',
  type: Error,
  message: 'assertion error'
});