Skip to content

Commit

Permalink
Add a new test to fix issue #628
Browse files Browse the repository at this point in the history
  • Loading branch information
humphd committed Jan 25, 2019
1 parent 52baa25 commit 0092614
Showing 1 changed file with 16 additions and 0 deletions.
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 @@ -49,6 +49,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) {
var fs = util.fs();
var contents = 'This is a file.';
Expand Down

0 comments on commit 0092614

Please sign in to comment.