not able to pass second test
When rendering the index.pug page, change the title from ‘Hello’ to ‘Home Page’.
app.route("/").get((req, res) => {
res.render(process.cwd() + "/views/pug/index", {
title: "Home Page",
message: "login",
showLogin: true
});
});
For some reason this test checks for the ‘Home Page’ text to be there when the ensureAuthenticate fails.
1 Like