mirror of https://gitee.com/openkylin/nodejs.git
13 lines
316 B
JavaScript
13 lines
316 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(filename, { encoding }, common.mustNotCall()),
|
|
{ code: 'ERR_INVALID_OPT_VALUE_ENCODING', name: 'TypeError' }
|
|
);
|