fix: Remove failing test

This commit is contained in:
Aaron
2026-02-05 16:13:03 -06:00
parent 0e8afbbf56
commit 6fb4cee43f
@@ -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', `<html></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', `<html></html>`);