summaryrefslogtreecommitdiff
path: root/test/parallel/test-internal-fs.js
blob: fe6c50194d1c722687ae7cd8c6e78412e09aee41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Flags: --expose-internals
'use strict';

const common = require('../common');
const assert = require('assert');
const fs = require('internal/fs');

assert.doesNotThrow(() => fs.assertEncoding());
assert.doesNotThrow(() => fs.assertEncoding('utf8'));
common.expectsError(
  () => fs.assertEncoding('foo'),
  { code: 'ERR_INVALID_OPT_VALUE_ENCODING', type: TypeError }
);