Skip to content

Commit

Permalink
chore: increase test coverage to 100% for /lib/api/api-request.js (#2912
Browse files Browse the repository at this point in the history
)
  • Loading branch information
Uzlopak committed Mar 5, 2024
1 parent f4ca0be commit 4852c23
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion test/node-test/client-errors.js
Original file line number Diff line number Diff line change
Expand Up @@ -1056,7 +1056,7 @@ test('retry idempotent inflight', async (t) => {
})

test('invalid opts', async (t) => {
const p = tspl(t, { plan: 2 })
const p = tspl(t, { plan: 5 })

const client = new Client('http://localhost:5000')
client.request(null, (err) => {
Expand All @@ -1065,6 +1065,22 @@ test('invalid opts', async (t) => {
client.pipeline(null).on('error', (err) => {
p.ok(err instanceof errors.InvalidArgumentError)
})
client.request({
path: '/',
method: 'GET',
highWaterMark: '1000'
}, (err) => {
p.ok(err instanceof errors.InvalidArgumentError)
p.strictEqual(err.message, 'invalid highWaterMark')
})
client.request({
path: '/',
method: 'GET',
highWaterMark: -1
}, (err) => {
p.ok(err instanceof errors.InvalidArgumentError)
p.strictEqual(err.message, 'invalid highWaterMark')
})

await p.completed
})
Expand Down

0 comments on commit 4852c23

Please sign in to comment.