Skip to content

Commit 81d1faa

Browse files
committed
Remove unused imports
1 parent 68c80cb commit 81d1faa

12 files changed

Lines changed: 40 additions & 56 deletions

tests/e2e/build-test-workflow.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import type { ExecResult, ReadFileResult, WriteFileResult } from '@repo/shared';
21
import { afterAll, beforeAll, describe, expect, test } from 'vitest';
32
import {
43
cleanupTestSandbox,

tests/e2e/command-timeout.test.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
import type {
2-
ExecResult,
3-
SessionCreateResult,
4-
SessionDeleteResult
5-
} from '@repo/shared';
1+
import type { ExecResult, SessionCreateResult } from '@repo/shared';
62
import { afterAll, beforeAll, describe, expect, test } from 'vitest';
73
import {
84
cleanupTestSandbox,
@@ -11,7 +7,6 @@ import {
117
type TestSandbox
128
} from './helpers/global-sandbox';
139
import { createTestHeaders } from './helpers/test-fixtures';
14-
import type { ErrorResponse } from './test-worker/types';
1510

1611
// Diagnostic instrumentation for #482 flake investigation.
1712
// Remove once root cause is confirmed.

tests/e2e/desktop-environment.test.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,8 @@ type DesktopScreenshotResult = {
1919
width: number;
2020
height: number;
2121
};
22-
type SuccessResult = { success: boolean };
23-
type ScreenSizeResult = { success: boolean; width: number; height: number };
2422
type CursorPositionResult = { success: boolean; x: number; y: number };
2523
type StreamUrlResult = { url: string };
26-
type ErrorResult = { error: string };
2724

2825
const skipPortExposureTests =
2926
process.env.TEST_WORKER_URL?.endsWith('.workers.dev') ?? false;

tests/e2e/git-clone-workflow.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
import type { ExecResult, GitCheckoutResult } from '@repo/shared';
1+
import type { ExecResult } from '@repo/shared';
22
import { afterAll, beforeAll, describe, expect, test } from 'vitest';
33
import {
44
cleanupTestSandbox,
55
createTestSandbox,
66
createUniqueSession,
77
type TestSandbox
88
} from './helpers/global-sandbox';
9-
import type { ErrorResponse } from './test-worker/types';
109

1110
/**
1211
* Git Clone Workflow Tests

tests/e2e/keepalive-workflow.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ExecResult, Process, ReadFileResult } from '@repo/shared';
1+
import type { Process } from '@repo/shared';
22
import { afterAll, beforeAll, describe, expect, test } from 'vitest';
33
import {
44
cleanupTestSandbox,

tests/e2e/musl.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
* - File operations work on Alpine filesystem
1111
*/
1212

13-
import type { ExecResult, ReadFileResult } from '@repo/shared';
1413
import { afterAll, beforeAll, describe, expect, test } from 'vitest';
1514
import {
1615
cleanupTestSandbox,

tests/e2e/opencode-workflow.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
* - Server startup and lifecycle via process API
77
*/
88

9-
import type { ExecResult } from '@repo/shared';
109
import { afterEach, beforeEach, describe, expect, test } from 'vitest';
1110
import {
1211
cleanupTestSandbox,

tests/e2e/process-lifecycle-workflow.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ExecResult, Process, ProcessLogsResult } from '@repo/shared';
1+
import type { ExecResult, Process } from '@repo/shared';
22
import { afterAll, beforeAll, describe, expect, test } from 'vitest';
33
import {
44
cleanupTestSandbox,

tests/e2e/process-readiness-workflow.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { PortExposeResult, Process, WaitForLogResult } from '@repo/shared';
1+
import type { PortExposeResult, Process } from '@repo/shared';
22
import { afterAll, beforeAll, describe, expect, test } from 'vitest';
33
import {
44
cleanupTestSandbox,

tests/e2e/session-state-isolation-workflow.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import type {
22
ExecResult,
33
Process,
4-
ReadFileResult,
54
SessionCreateResult,
6-
SessionDeleteResult,
7-
WaitForExitResult
5+
SessionDeleteResult
86
} from '@repo/shared';
97
import { afterAll, beforeAll, describe, expect, test } from 'vitest';
108
import {

0 commit comments

Comments
 (0)