Skip to content

Commit

Permalink
chore: Fix InjectOptions type with test additions (#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymarianne authored Feb 23, 2024
1 parent 9605a4a commit 9a7d3dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ declare namespace inject {
payload?: InjectPayload
body?: InjectPayload
server?: http.Server
autoStart?: boolean
cookies?: { [k: string]: string },
signal?: AbortSignal,
Request?: object,
Expand Down
4 changes: 4 additions & 0 deletions types/index.test-d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ import { inject, isInjection, Response, DispatchFunc, InjectOptions, Chain } fro
import { expectType, expectAssignable, expectNotAssignable } from 'tsd'

expectAssignable<InjectOptions>({ url: '/' })
expectAssignable<InjectOptions>({ autoStart: true })
expectAssignable<InjectOptions>({ autoStart: false })
expectAssignable<InjectOptions>({ validate: true })
expectAssignable<InjectOptions>({ validate: false })

const dispatch: http.RequestListener = function (req, res) {
expectAssignable<http.IncomingMessage>(req)
Expand Down

0 comments on commit 9a7d3dc

Please sign in to comment.