Test used to validate `passport.authenticate()` calls

What is your hint or solution suggestion?
The tests validate that you have added the code in your server.js file for the two routes. They expect the route to be defined using app.route(...).get(...) syntax where the route and get calls are on the same line, such as

app.route(<insert path here>).get(<insert passport.authenticate() call here>

If you are defining the route directly via get call, it will not work:

app.get(<insert path here>, <insert passport.authenticate() call here>

Challenge: Implementation of Social Authentication

Link to the challenge:

Thank you, for mentioning this.

I have created an issue for this:

As such, I do not think there is a need to add this to the guide. Hopefully, should be fixed soon.