chore: Simplify imports in wxt/e2e (#2122)

This commit is contained in:
Patryk Kuniczak
2026-02-21 19:44:56 +01:00
committed by Aaron
parent a5ec046346
commit d16f59d33d
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
import { describe, it, expect, vi, beforeEach } from 'vitest';
import { TestProject } from '../utils';
import { WxtHooks } from '../../src/types';
import type { WxtHooks } from '../../src';
const hooks: WxtHooks = {
ready: vi.fn(),
+2 -2
View File
@@ -1,8 +1,8 @@
import { describe, it, expect, vi } from 'vitest';
import { TestProject } from '../utils';
import type { GenericEntrypoint, InlineConfig } from '../../src/types';
import type { GenericEntrypoint, InlineConfig } from '../../src';
import { readFile } from 'fs-extra';
import { normalizePath } from '../../src/core/utils/paths';
import { normalizePath } from '../../src';
describe('Module Helpers', () => {
describe('options', () => {