From 9375c2d0c8b4f756edf04c9c651fca69542327da Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Tue, 25 Jun 2024 13:03:51 -0400 Subject: [PATCH] test: next-lint.test.js --- test/integration/eslint/test/next-lint.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/eslint/test/next-lint.test.js b/test/integration/eslint/test/next-lint.test.js index fa4e173126e34..1777007b19677 100644 --- a/test/integration/eslint/test/next-lint.test.js +++ b/test/integration/eslint/test/next-lint.test.js @@ -120,7 +120,7 @@ describe('Next Lint', () => { 'We created the .eslintrc.json file for you and included your selected configuration' ) expect(eslintrcJson).toMatchObject({ - extends: ['next/core-web-vitals', 'next/typescript'], + extends: 'next/core-web-vitals', }) }) @@ -133,7 +133,7 @@ describe('Next Lint', () => { 'We created the .eslintrc.json file for you and included your selected configuration' ) expect(appEslintrcJson).toMatchObject({ - extends: ['next/core-web-vitals', 'next/typescript'], + extends: 'next/core-web-vitals', }) })