mirror of
https://github.com/nodejs/node.git
synced 2025-05-10 03:12:57 +00:00

* Use `common.mustNotCall()` in place of `common.noop` where appropriate * Increase specificity of regular expressions (that is, make them match the whole error string rather than part of the error string) in `assert.throws()` calls PR-URL: https://github.com/nodejs/node/pull/13501 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
14 lines
311 B
JavaScript
14 lines
311 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
|
|
const encoding = 'foo-8';
|
|
const filename = 'bar.txt';
|
|
|
|
assert.throws(
|
|
fs.readFile.bind(fs, filename, { encoding }, common.mustNotCall()),
|
|
new RegExp(`^Error: Unknown encoding: ${encoding}$`)
|
|
);
|