summaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-read-stream-double-close.js
blob: 32117a0a1e9402f38865dd06a9aac8b9bdc04ace (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
'use strict';

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

{
  const s = fs.createReadStream(__filename);

  s.close(common.mustCall());
  s.close(common.mustCall());
}

{
  const s = fs.createReadStream(__filename);

  // This is a private API, but it is worth testing. close calls this
  s.destroy(null, common.mustCall());
  s.destroy(null, common.mustCall());
}