Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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