fix(node): fix node e2e test for circle (#2163)

This commit is contained in:
Jason Jean 2019-12-09 12:39:30 -05:00 committed by GitHub
parent 37669914cb
commit 5229529e03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -228,6 +228,9 @@ forEachCli(currentCLIName => {
const nodeapp = uniq('nodeapp');
runCLI(`generate @nrwl/node:app ${nodeapp} --linter=${linter}`);
setMaxWorkers(nodeapp);
const lintResults = runCLI(`lint ${nodeapp}`);
expect(lintResults).toContain('All files pass linting.');