Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

fixed existing tests #19

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open

Conversation

aarontravass
Copy link
Contributor

No description provided.

@aarontravass
Copy link
Contributor Author

can you cancel hanging ci

deno.jsonc Outdated
@@ -7,7 +7,7 @@
"semiColons": false
},
"tasks": {
"test": "deno test --allow-net --allow-read --coverage=coverage --parallel",
"test": "deno test --allow-net --allow-all --coverage=coverage --parallel",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

--allow-all is insecure to use. if you meant to add a permission add it via --allow-{perm}

@@ -9,21 +9,31 @@ export type DownloadOptions =
headers: Record<string, unknown>
}>

type Callback = (err?: any) => void
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

avoid any wherever possible, use unknown instead

async (
path: string,
{ signal, ...opts }: SendFileOptions = {},
cb?: (err?: any) => void,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

better change it to unknown, we don't know what kind of error could be thrown

@@ -74,7 +75,11 @@ async (path: string, { signal, ...opts }: SendFileOptions = {}) => {

res._init.status = status

const file = await Deno.readFile(path, { signal })
let file
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this can be instead wrapped in try catch


// await makeFetch(server)('/route').expect(200, 'A different route')
const server = app.handler
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

app handler is not a server, I think it's okay to just pass the app.handler to makeFetch directly

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants