From 4de0bbfafdde622491052533d822e16fc043b20b Mon Sep 17 00:00:00 2001 From: andrewkoung <37606829+andrewkoung@users.noreply.github.com> Date: Thu, 31 Jan 2019 13:52:39 -0500 Subject: [PATCH] Fixes #661: replaced var with const (#669) * replaced var with const for the most part * Update fs.symlink.spec.js fixed line 93 and added strict mode --- tests/spec/fs.symlink.spec.js | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/tests/spec/fs.symlink.spec.js b/tests/spec/fs.symlink.spec.js index 174b673..bec3011 100644 --- a/tests/spec/fs.symlink.spec.js +++ b/tests/spec/fs.symlink.spec.js @@ -1,17 +1,19 @@ -var util = require('../lib/test-utils.js'); -var expect = require('chai').expect; +'use strict'; + +const util = require('../lib/test-utils.js'); +const expect = require('chai').expect; describe('fs.symlink', function () { beforeEach(util.setup); afterEach(util.cleanup); it('should be a function', function () { - var fs = util.fs(); + const fs = util.fs(); expect(fs.symlink).to.be.a('function'); }); it('should return an error if part of the parent destination path does not exist', function (done) { - var fs = util.fs(); + const fs = util.fs(); fs.symlink('/', '/tmp/mydir', function (error) { expect(error).to.exist; @@ -21,7 +23,7 @@ describe('fs.symlink', function () { }); it('should return an error if the destination path already exists', function (done) { - var fs = util.fs(); + const fs = util.fs(); fs.symlink('/tmp', '/', function (error) { expect(error).to.exist; @@ -31,7 +33,7 @@ describe('fs.symlink', function () { }); it('should create a symlink', function (done) { - var fs = util.fs(); + const fs = util.fs(); fs.symlink('/', '/myfile', function (error) { expect(error).not.to.exist; @@ -47,7 +49,7 @@ describe('fs.symlink', function () { /** Tests for fsPromises API */ describe('fsPromises.symlink', function () { it('should return an error if destination path does not exist', function () { - var fsPromises = util.fs().promises; + const fsPromises = util.fs().promises; return fsPromises.symlink('/', '/tmp/link') .catch(error => { @@ -57,7 +59,7 @@ describe('fs.symlink', function () { }); it('should return an error if source path does not exist', function () { - var fsPromises = util.fs().promises; + const fsPromises = util.fs().promises; return fsPromises.symlink('/tmp/myLink', '/myLink') .catch(error => { @@ -67,7 +69,7 @@ describe('fs.symlink', function () { }); it('Promise should create a symlink of type DIRECTORY when directory provided', function () { - var fsPromises = util.fs().promises; + const fsPromises = util.fs().promises; return fsPromises.symlink('/', '/myDirLink') .then(() => fsPromises.stat('/myDirLink')) @@ -78,7 +80,7 @@ describe('fs.symlink', function () { }); it('Promise should create a symlink of type FILE when file provided', function () { - var fsPromises = util.fs().promises; + const fsPromises = util.fs().promises; return fsPromises.writeFile('/myFile', 'data') .then(() => fsPromises.symlink('/myFile', '/myFileLink')) @@ -90,7 +92,7 @@ describe('fs.symlink', function () { }); it('Promise should return an error if the destination path already exists', function () { - var fsPromises = util.fs().promises; + const fsPromises = util.fs().promises; return fsPromises.symlink('/tmp', '/') .catch(error => { @@ -108,7 +110,7 @@ describe('fsPromises.symlink', function () { it('should return an error if part of the parent destination path does not exist', () => { - var fsPromises = util.fs().promises; + const fsPromises = util.fs().promises; return fsPromises.symlink('/', '/tmp/mydir') .catch(error => {