Skip to content

Commit bcd83ee

Browse files
committed
fix(tlon): rename __test to testExports to satisfy no-underscore-dangle lint rule
1 parent 7804e79 commit bcd83ee

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

extensions/tlon/src/channel.runtime.error-body-boundary.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ vi.mock("./urbit/fetch.js", () => ({
1818
}),
1919
}));
2020

21-
const { __test } = await import("./channel.runtime.js");
22-
const { createHttpPokeApi } = __test;
21+
const { testExports } = await import("./channel.runtime.js");
22+
const { createHttpPokeApi } = testExports;
2323

2424
/** Streaming chunk size. */
2525
const CHUNK_SIZE = 64 * 1024;

extensions/tlon/src/channel.runtime.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,4 +269,4 @@ export async function startTlonGatewayAccount(
269269
export { tlonSetupWizard };
270270

271271
/** Focused test hooks for the HTTP poke error path boundary. */
272-
export const __test = { createHttpPokeApi };
272+
export const testExports = { createHttpPokeApi };

0 commit comments

Comments
 (0)