13 lines
240 B
JavaScript
13 lines
240 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const common = require('../common');
|
||
|
const fs = require('fs');
|
||
|
const path = require('path');
|
||
|
|
||
|
common.refreshTmpDir();
|
||
|
|
||
|
const s = fs.createWriteStream(path.join(common.tmpDir, 'nocallback'));
|
||
|
|
||
|
s.end('hello world');
|
||
|
s.close();
|