Unable to run test on local machine

I had created a new codegen for reactjs but unable to run the test because of the following error?

D:\postman-code-generators\node_modules\eslint\lib\util\glob-utils.js:255
throw new (pathsForCurrentGlob.length ? AllFilesIgnoredError : NoFilesFoundError)(globPatterns[index]);
^

NoFilesFoundError: No files matching β€˜./bin’ were found.
at D:\postman-code-generators\node_modules\eslint\lib\util\glob-utils.js:255:19
at Array.reduce ()
at Object.listFilesToProcess (D:\postman-code-generators\node_modules\eslint\lib\util\glob-utils.js:253:59)
at CLIEngine.executeOnFiles (D:\postman-code-generators\node_modules\eslint\lib\cli-engine.js:586:36)
at D:\postman-code-generators\codegens\reactjs-axios\npm\test-lint.js:34:42
at nextTask (D:\postman-code-generators\node_modules\async\dist\async.js:5324:14)
at Object.waterfall (D:\postman-code-generators\node_modules\async\dist\async.js:5334:5)
at module.exports (D:\postman-code-generators\codegens\reactjs-axios\npm\test-lint.js:25:9)
at D:\postman-code-generators\node_modules\async\dist\async.js:3880:24
at replenish (D:\postman-code-generators\node_modules\async\dist\async.js:1011:17) {
messageTemplate: β€˜file-not-found’,
messageData: { pattern: β€˜./bin’ }
}

This error is most likely caused by the presence of non-existent directories in the list LINT_SOURCE_DIRS in npm/test-lint.js file in your codegen. This is what it looks like in other codegens:

  LINT_SOURCE_DIRS = [
    './lib',
    './test',
    './npm/*.js',
    './index.js'
  ];