Skip to content

Commit

Permalink
Fix next-lint.test.js integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaKGoldberg committed Jul 28, 2023
1 parent 556e930 commit 33af8b8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/integration/eslint/test/next-lint.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@ describe('Next Lint', () => {
expect(stdout).toContain(
'We created the .eslintrc.json file for you and included your selected configuration'
)
expect(eslintrcJson).toMatchObject({ extends: 'next/core-web-vitals' })
expect(eslintrcJson).toMatchObject({
extends: ['next/core-web-vitals', 'next/typescript'],
})
})

test('shows a successful message when completed', async () => {
Expand Down

0 comments on commit 33af8b8

Please sign in to comment.