diff --git a/src/core/tester.ts b/src/core/tester.ts index 9a53423..4380eb3 100644 --- a/src/core/tester.ts +++ b/src/core/tester.ts @@ -1,7 +1,7 @@ import type { Context } from "../types/index.js"; import http from "node:http"; import { join, resolve } from "node:path"; -import process, { cwd } from "node:process"; +import process from "node:process"; import { build } from "esbuild"; import { copy, emptyDir, outputFile, outputJSON, pathExists } from "fs-extra/esm"; import { isCI } from "std-env"; diff --git a/src/utils/zotero/remote-zotero.ts b/src/utils/zotero/remote-zotero.ts index ddd8252..ad4cdd5 100644 --- a/src/utils/zotero/remote-zotero.ts +++ b/src/utils/zotero/remote-zotero.ts @@ -84,7 +84,7 @@ export class RemoteFirefox { return this.client; } catch (error: any) { - logger.fail('Failed to connecte to RDP client, retry...') + logger.fail("Failed to connecte to RDP client, retry..."); if (isErrorWithCode("ECONNREFUSED", error)) { await new Promise(resolve => setTimeout(resolve, RETRY_INTERVAL)); lastError = error;