refactor: clean up code formatting and improve readability in various files
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
import { createExponentialBackoff } from "./backoff";
|
||||
import { describe, expect, it, vi } from "vitest";
|
||||
|
||||
|
||||
describe("createExponentialBackoff", () => {
|
||||
it("uses default options", () => {
|
||||
const backoff = createExponentialBackoff();
|
||||
|
||||
@@ -50,7 +50,8 @@ export async function checkGatewayConnection(params: {
|
||||
} catch (error) {
|
||||
return {
|
||||
ok: false,
|
||||
message: error instanceof Error ? error.message : "Unable to reach gateway.",
|
||||
message:
|
||||
error instanceof Error ? error.message : "Unable to reach gateway.",
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user