Basic Node and Expess

Serve JSON on a Specific Route:
test keeps failing due to timeout (test timeout). When I point my browser the url app/json I get served with the expected json.
Here is my code
app.get(’/json’, (req,res) => {
res.json({
message: “Hello json”
});
});
Thanks for the help