Test cannot pass unless fcctesting.js is modified

What is your hint or solution suggestion?

In order to check if the challenge is complete, the fCC testing engine makes a GET request to /_api/routes.js, which should return the source code of our routes.js file. However, this GET route is not configured in the fcctesting.js file supplied when starting the module. To complete this challenge (and the next one), you must add the following routes to the /freeCodeCamp/fcctesting.js file:

    app.route('/_api/routes.js')
    .get(function(req, res, next) {
      console.log('routes.js requested');
      fs.readFile(process.cwd() + '/routes.js', function(err, data) {
        if(err) return next(err);
        res.send(data.toString());
      });
    });
    app.route('/_api/auth.js')
    .get(function(req, res, next) {
      console.log('auth.js requested');
      fs.readFile(process.cwd() + '/auth.js', function(err, data) {
        if(err) return next(err);
        res.send(data.toString());
      });
    });

Challenge: Implementation of Social Authentication

Link to the challenge:

Hello there,

These lessons have been updated (including the boilerplate). This does mean that a few tests will not work as expected, if you had already started the lessons prior to the update.

Here is more information: https://github.com/freeCodeCamp/freeCodeCamp/issues/39572#issuecomment-691739410

Makes sense! Thanks!