blob: 77cd0e3ab124a23f1144e008a2e03878c3fe879f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
'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_ARG_VALUE', name: 'TypeError' }
);
|