Skip to content

Commit

Permalink
Adjusting test
Browse files Browse the repository at this point in the history
  • Loading branch information
guyonroche committed Jun 6, 2017
1 parent 1a8d250 commit 5e69a52
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ npm install exceljs

<ul>
<li>
Merged <a href="https://github.com/guyonroche/exceljs/pull/319">Add missing Office Rels #319</a>
Thanks goes to <a href="https://github.com/mauriciovillalobos">mauriciovillalobos</a> for the contribution.
Merged <a href="https://github.com/guyonroche/exceljs/pull/327">Avoid error on anchor with no media #327</a>.
Thanks goes to <a href="https://github.com/holm">holm</a> for the contribution.
</li>
<li>
Merged <a href="https://github.com/guyonroche/exceljs/pull/320">Add printTitlesRow Support #320</a>
Thanks goes to <a href="https://github.com/psellers89">psellers89</a> for the contribution.
Merged <a href="https://github.com/guyonroche/exceljs/pull/332">Assortment of fixes for streaming read #332</a>.
Thanks goes to <a href="https://github.com/holm">holm</a> for the contribution.
</li>
</ul>

Expand Down Expand Up @@ -1715,4 +1715,4 @@ If any splice operation affects a merged cell, the merge group will not be moved
| 0.4.4 | <ul><li>Merged <a href="https://github.com/guyonroche/exceljs/pull/297">Issue with copied cells #297</a>. This merge adds support for shared formulas. Thanks to <a href="https://github.com/muscapades">muscapades</a> for the contribution.</li></ul> |
| 0.4.6 | <ul><li>Merged <a href="https://github.com/guyonroche/exceljs/pull/304">Correct spelling #304</a>. Thanks to <a href="https://github.com/toanalien">toanalien</a> for the contribution.</li><li>Merged <a href="https://github.com/guyonroche/exceljs/pull/304">Added support for auto filters #306</a>. This adds <a href="#auto-filters">Auto Filters</a> to the Worksheet. Thanks to <a href="https://github.com/C4rmond4i">C4rmond4i</a> for the contribution.</li><li>Restored NodeJS 4.0.0 compatability by removing the destructuring code. My apologies for any inconvenience.</li></ul> |
| 0.4.9 | <ul><li>Switching to transpiled code for distribution. This will ensure compatability with 4.0.0 and above from here on. And it will also allow use of much more expressive JS code in the lib folder!</li><li><a href="#images">Basic Image Support!</a>Images can now be added to worksheets either as a tiled background or stretched over a range. Note: other features like rotation, etc. are not supported yet and will reqeuire further work.</li></ul> |
| 0.4.10 | <ul><li>Merged <a href="https://github.com/guyonroche/exceljs/pull/319">Add missing Office Rels #319</a>. Thanks goes to <a href="https://github.com/mauriciovillalobos">mauriciovillalobos</a> for the contribution.</li><li>Merged <a href="https://github.com/guyonroche/exceljs/pull/320">Add printTitlesRow Support #320</a> Thanks goes to <a href="https://github.com/psellers89">psellers89</a> for the contribution.</li></ul> |
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": "*",
Expand Down
4 changes: 2 additions & 2 deletions spec/utils/test-spliced-sheet.js
Original file line number Diff line number Diff line change
Expand Up @@ -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']);
}
Expand Down Expand Up @@ -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']);
}
Expand Down

0 comments on commit 5e69a52

Please sign in to comment.