We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 465fcec commit e28be05Copy full SHA for e28be05
docs/recipes/endpoint-testing.md
@@ -9,6 +9,7 @@ Since tests run concurrently, it's best to create a fresh server instance for ea
9
```js
10
function makeApp() {
11
const app = express();
12
+ app.use(bodyParser.json());
13
app.post('/signup', signupHandler);
14
return app;
15
}
0 commit comments