update devDependencies, fix lint issues
[squeep-log-helper] / test / lib / file-scope.js
index 889ded6cf860abf6d891f4d36290038c5512fb35..f43aed6dd2e60dba734af69a3f564a5823f6c2d8 100644 (file)
@@ -223,7 +223,7 @@ describe('File Scope', function () {
 
     it('covers no package root', function () {
       options.includePackage = true;
-      fs.statSync.restore()
+      fs.statSync.restore();
       sinon.stub(fs, 'statSync').throws(noentError);
       fs.readFileSync.throws(noentError);
       const result = fileScope(filepath, options)(method);
@@ -233,7 +233,7 @@ describe('File Scope', function () {
     it('covers exception while finding package root', function () {
       const expectedException = new Error('oh no');
       options.includePackage = true;
-      fs.statSync.restore()
+      fs.statSync.restore();
       sinon.stub(fs, 'statSync').throws(expectedException);
       fs.readFileSync.throws(noentError);
       const result = fileScope(filepath, options)(method);