Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ npm i
> This requires [docker](https://www.docker.com/) installed on your machine.

```bash
npm run build-wasm
npm run build:wasm
```

#### Copy the sources to `undici`
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/best-practices/mocking-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ setGlobalDispatcher(mockAgent)
// this call is made (not intercepted)
await fetch(`http://localhost:3000/endpoint?query='hello'`, {
method: 'POST',
headers: { 'content-type': 'application/json' }
headers: { 'content-type': 'application/json' },
body: JSON.stringify({ data: '' })
})

Expand Down