summaryrefslogtreecommitdiff
path: root/test/parallel/test-util-deprecate-invalid-code.js
blob: 7e68c18817c0ca8c25f3636040e25b140511a1a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict';

const common = require('../common');
const assert = require('assert');
const util = require('util');

[1, true, false, null, {}].forEach((notString) => {
  assert.throws(() => util.deprecate(() => {}, 'message', notString), {
    code: 'ERR_INVALID_ARG_TYPE',
    name: 'TypeError',
    message: 'The "code" argument must be of type string.' +
             common.invalidArgTypeHelper(notString)
  });
});