fix(tests): remove undefined MockRoute export and unused imports

- Remove MockRoute from index.ts (type was removed in previous commit)
- Remove unused UPLOAD_SUCCESS, UNAUTHORIZED imports from test file
This commit is contained in:
kaitranntt
2026-01-23 23:47:09 -05:00
parent 2b91c40e37
commit aaa6feb8db
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -19,7 +19,6 @@ export type {
HttpMethod, HttpMethod,
MockResponse, MockResponse,
MockResponseBody, MockResponseBody,
MockRoute,
MockHttpServerConfig, MockHttpServerConfig,
MockFetchHandler, MockFetchHandler,
CapturedRequest, CapturedRequest,
@@ -8,7 +8,7 @@ import { describe, it, expect, beforeEach, afterEach } from 'bun:test';
import * as fs from 'fs'; import * as fs from 'fs';
import * as path from 'path'; import * as path from 'path';
import * as os from 'os'; import * as os from 'os';
import { mockFetch, restoreFetch, getCapturedFetchRequests, UPLOAD_SUCCESS, UNAUTHORIZED } from '../../mocks'; import { mockFetch, restoreFetch, getCapturedFetchRequests } from '../../mocks';
describe('remote-token-uploader', () => { describe('remote-token-uploader', () => {
let tempDir: string; let tempDir: string;