Skip to content

Commit

Permalink
Merge pull request #682 from LD4P/fix_linter_error_amc
Browse files Browse the repository at this point in the history
Fix the copy pasta linter comment error
  • Loading branch information
jgreben committed Jun 11, 2019
2 parents df62e7d + 57d547c commit 3f00046
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __tests__/integration/unauthenticatedNavigation.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import 'isomorphic-fetch'

describe('When an unauthenticated user tries to access resource templates', () => {
beforeAll(async () => {
jest.setTimeout(60000) // this seems to take around 10s in practice, but be generous, just in case
jest.setTimeout(60000) // This seems to take around 10s in practice, but be generous, just in case
await page.goto('http://127.0.0.1:8888/templates')

/*
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"dev-build": "webpack --progress --mode development",
"dev-build-test": "npm run dev-build && npm run test",
"dev-start": "webpack-dev-server --config ./webpack.config.js --mode development",
"eslint": "eslint --max-warnings 10 --color -c .eslintrc.js --ext js,jsx .",
"eslint": "eslint --max-warnings 11 --color -c .eslintrc.js --ext js,jsx .",
"eslint-fix": "eslint --max-warnings 10 --color -c .eslintrc.js --ext js,jsx --fix .",
"jest-cov": "jest --coverage --colors --silent --runInBand",
"jest-ci": "jest --colors --silent --ci --runInBand --coverage --reporters=default --reporters=jest-junit && cat ./coverage/lcov.info | coveralls",
Expand Down

0 comments on commit 3f00046

Please sign in to comment.