diff --git a/packages/wxt/e2e/tests/hooks.test.ts b/packages/wxt/e2e/tests/hooks.test.ts index 9442c4088..47ecb1095 100644 --- a/packages/wxt/e2e/tests/hooks.test.ts +++ b/packages/wxt/e2e/tests/hooks.test.ts @@ -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(), diff --git a/packages/wxt/e2e/tests/modules.test.ts b/packages/wxt/e2e/tests/modules.test.ts index 1a24efc19..4d6af641e 100644 --- a/packages/wxt/e2e/tests/modules.test.ts +++ b/packages/wxt/e2e/tests/modules.test.ts @@ -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', () => {