From d16f59d33d833fcc3269bdbfd595c0528f5e91a3 Mon Sep 17 00:00:00 2001
From: Patryk Kuniczak
Date: Sat, 21 Feb 2026 19:44:56 +0100
Subject: [PATCH] chore: Simplify imports in `wxt/e2e` (#2122)
---
packages/wxt/e2e/tests/hooks.test.ts | 2 +-
packages/wxt/e2e/tests/modules.test.ts | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/packages/wxt/e2e/tests/hooks.test.ts b/packages/wxt/e2e/tests/hooks.test.ts
index 9442c408..47ecb109 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 1a24efc1..4d6af641 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', () => {