From 5e69a529db6cd3b47b86e4692aeb169c9f79988a Mon Sep 17 00:00:00 2001 From: guyonroche Date: Tue, 6 Jun 2017 21:00:42 +0100 Subject: [PATCH] Adjusting test --- README.md | 10 +++++----- package.json | 1 - spec/utils/test-spliced-sheet.js | 4 ++-- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 0584e4143..65932336e 100644 --- a/README.md +++ b/README.md @@ -12,12 +12,12 @@ npm install exceljs @@ -1715,4 +1715,4 @@ If any splice operation affects a merged cell, the merge group will not be moved | 0.4.4 | | | 0.4.6 | | | 0.4.9 | | - \ No newline at end of file +| 0.4.10 | | diff --git a/package.json b/package.json index a3d740df6..870f363b3 100644 --- a/package.json +++ b/package.json @@ -84,7 +84,6 @@ "grunt-contrib-jasmine": "^1.1.0", "grunt-contrib-uglify": "^2.1.0", "grunt-contrib-watch": "^1.0.0", - "jshint": "*", "memorystream": "*", "mocha": "*", "request": "*", diff --git a/spec/utils/test-spliced-sheet.js b/spec/utils/test-spliced-sheet.js index 9013bce86..027971493 100644 --- a/spec/utils/test-spliced-sheet.js +++ b/spec/utils/test-spliced-sheet.js @@ -190,7 +190,7 @@ module.exports = { expect(ws.getRow(1).values).to.deep.equal([, '1,1', 'one', '1,4', '1,5']); expect(ws.getRow(2).values).to.deep.equal([, '2,1', 'two', '2,4', '2,5']); - expect(ws.getRow(3).values).to.deep.equal([, , 'three', , ]); + expect(ws.getRow(3).values).to.deep.equal([, , 'three', ]); expect(ws.getRow(4).values).to.deep.equal([, 4.1, 'four',, 4.5]); expect(ws.getRow(5).values).to.deep.equal([, '5,1', 'five', '5,4', '5,5']); } @@ -218,7 +218,7 @@ module.exports = { expect(ws.getRow(1).values).to.deep.equal([, '1,1', 'one', 'une', '1,4', '1,5']); expect(ws.getRow(2).values).to.deep.equal([, '2,1', 'two', 'deux', '2,4', '2,5']); - expect(ws.getRow(3).values).to.deep.equal([,, 'three', 'trois', , ]); + expect(ws.getRow(3).values).to.deep.equal([,, 'three', 'trois', ]); expect(ws.getRow(4).values).to.deep.equal([, 4.1, 'four', 'quatre',, 4.5]); expect(ws.getRow(5).values).to.deep.equal([, '5,1', 'five', 'cinq', '5,4', '5,5']); }