Skip to content

Commit

Permalink
fixes integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
housseindjirdeh committed Apr 5, 2021
1 parent e925c22 commit 579aebc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/integration/eslint/test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ describe('ESLint', () => {
})

expect(stderr).toContain(
`It looks like you're trying to use ESLint but do not have the required package(s) installed.`
`It looks like you're trying to use ESLint but do not have the following required package(s) installed:`
)
expect(stderr).toContain(
'Please install all required dependencies by running:'
)
expect(stderr).toContain('Please install all missing dependencies by running:')
expect(stderr).toContain('npx install-peerdeps --dev @next/eslint-config')
expect(stderr).toContain(
'If you are not trying to use ESLint, please remove the .eslintrc file from your application.'
Expand Down

0 comments on commit 579aebc

Please sign in to comment.