From 6fb4cee43f7576d8484c9f12f31a5b7bab58cee6 Mon Sep 17 00:00:00 2001 From: Aaron Date: Thu, 5 Feb 2026 16:13:03 -0600 Subject: [PATCH] fix: Remove failing test --- packages/wxt/e2e/tests/auto-imports.test.ts | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/packages/wxt/e2e/tests/auto-imports.test.ts b/packages/wxt/e2e/tests/auto-imports.test.ts index 8746656f..f184dc53 100644 --- a/packages/wxt/e2e/tests/auto-imports.test.ts +++ b/packages/wxt/e2e/tests/auto-imports.test.ts @@ -288,20 +288,6 @@ describe('Auto Imports', () => { ); }); - it('should NOT output an ESlint config file by default', async () => { - const project = new TestProject(); - project.addFile('entrypoints/popup.html', ``); - - await project.prepare(); - - expect(await project.fileExists('.wxt/eslint-auto-imports.mjs')).toBe( - false, - ); - expect(await project.fileExists('.wxt/eslintrc-auto-import.json')).toBe( - false, - ); - }); - it('should allow customizing the output', async () => { const project = new TestProject(); project.addFile('entrypoints/popup.html', ``);