Skip to content

Commit 54c6fcc

Browse files
chore: Simplify imports in wxt/e2e (#2122)
1 parent 0114ee6 commit 54c6fcc

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/wxt/e2e/tests/hooks.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, it, expect, vi, beforeEach } from 'vitest';
22
import { TestProject } from '../utils';
3-
import { WxtHooks } from '../../src/types';
3+
import type { WxtHooks } from '../../src';
44

55
const hooks: WxtHooks = {
66
ready: vi.fn(),

packages/wxt/e2e/tests/modules.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { describe, it, expect, vi } from 'vitest';
22
import { TestProject } from '../utils';
3-
import type { GenericEntrypoint, InlineConfig } from '../../src/types';
3+
import type { GenericEntrypoint, InlineConfig } from '../../src';
44
import { readFile } from 'fs-extra';
5-
import { normalizePath } from '../../src/core/utils/paths';
5+
import { normalizePath } from '../../src';
66

77
describe('Module Helpers', () => {
88
describe('options', () => {

0 commit comments

Comments
 (0)