Add a new test to fix issue #628
This commit is contained in:
parent
7ab6f5e7c6
commit
168eeb4951
|
@ -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) {
|
it('should write, read a utf8 file with "utf8" option to writeFile', function(done) {
|
||||||
const fs = util.fs();
|
const fs = util.fs();
|
||||||
const contents = 'This is a file.';
|
const contents = 'This is a file.';
|
||||||
|
|
Loading…
Reference in New Issue