nodejs/test/parallel/test-fs-read-file-assert-encoding.js

18 lines
381 B
JavaScript
Raw Normal View History

'use strict';
const common = require('../common');
const assert = require('assert');
const fs = require('fs');
const encoding = 'foo-8';
const filename = 'bar.txt';
const expectedError = common.expectsError({
code: 'ERR_INVALID_OPT_VALUE_ENCODING',
type: TypeError,
});
assert.throws(
fs.readFile.bind(fs, filename, { encoding }, common.mustNotCall()),
expectedError
);