+
Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions tests/spec/fs.writeFile-readFile.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,22 @@ describe('fs.writeFile, fs.readFile', function() {
});
});

it('should write a string when given a number for the data', function(done) {
var fs = util.fs();
var contents = 7;
var contentsAsString = '7';

fs.writeFile('/myfile', contents, function(error) {
if(error) throw error;

fs.readFile('/myfile', 'utf8', function(error, data) {
expect(error).not.to.exist;
expect(data).to.equal(contentsAsString);
done();
});
});
});

it('should write, read a utf8 file with "utf8" option to writeFile', function(done) {
const fs = util.fs();
const contents = 'This is a file.';
Expand Down
点击 这是indexloc提供的php浏览器服务,不要输入任何密码和下载