Skip to content

Commit

Permalink
TEMP skip bigint tests for msnodesqlv8
Browse files Browse the repository at this point in the history
  • Loading branch information
dhensby committed Apr 28, 2022
1 parent 5c27016 commit a7527cd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/msnodesqlv8/msnodesqlv8.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,9 @@ describe('msnodesqlv8', function () {
it('connection healthy works', done => TESTS['connection healthy works'](config(), done))
it('healthy connection goes bad', done => TESTS['healthy connection goes bad'](config(), done))
it('request timeout', done => TESTS['request timeout'](done))
it('BigInt parameters', done => TESTS['BigInt parameters'](done))
it('BigInt casted types', done => TESTS['BigInt casted types'](done))
// skip these whilst nodesqlv8 doesnt support returning bigint as strings
it.skip('BigInt parameters', done => TESTS['BigInt parameters'](done))
it.skip('BigInt casted types', done => TESTS['BigInt casted types'](done))
it('dataLength type correction', done => TESTS['dataLength type correction'](done))
it('chunked xml support', done => TESTS['chunked xml support'](done))

Expand Down

0 comments on commit a7527cd

Please sign in to comment.