Hello, you can find my code at the link: https://freecodecam-boilerplate-up3lf2c3nud.ws-eu115.gitpod.io/ as you can see there is nothing special
but even if it works by calling the api directly the tests fail
how i can go on??
app.route('/name')
.get((req, res) => {
// Extract first and last name from the query string
const firstName = req.query.first;
const lastName = req.query.last;
// Respond with a JSON object
res.json({
name: `${firstName} ${lastName}`
});
});