Fixes from #504 to pass lint, travis

This commit is contained in:
David Humphrey 2018-12-15 00:17:43 -05:00
parent 4a5d8c1222
commit 158f6241b6
1 changed files with 9 additions and 11 deletions

View File

@ -4,11 +4,15 @@ var expect = require('chai').expect;
describe('fs.write', function() {
beforeEach(util.setup);
afterEach(util.cleanup);
// if the file is undefined, it will create problems
//
it('should be a error',function(done){
var fs=util.fs();
it('should be a function', function() {
var fs = util.fs();
expect(fs.write).to.be.a('function');
});
it('should error if file path is undefined',function(done) {
var fs = util.fs();
fs.writeFile(undefined, 'data', function(error) {
expect(error).to.exist;
expect(error.code).to.equal('EINVAL');
@ -16,12 +20,6 @@ describe('fs.write', function() {
});
});
it('should be a function', function() {
var fs = util.fs();
expect(fs.write).to.be.a('function');
});
it('should write data to a file', function(done) {
var fs = util.fs();
var buffer = Buffer.from([1, 2, 3, 4, 5, 6, 7, 8]);