Skip to content

Commit 7e75e04

Browse files
committed
added exports required by tests
1 parent ce18121 commit 7e75e04

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/tests/queues_test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
* limitations under the License.
1414
*/
1515

16-
import { createInbox, Subscription } from "../mod.ts";
16+
import { createInbox } from "../mod.ts";
17+
import type { Subscription } from "../mod.ts";
1718
import { assertEquals } from "jsr:@std/assert";
1819
import { cleanup, setup } from "./helpers/mod.ts";
1920

src/tests/resub_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import type { NatsConnectionImpl } from "jsr:@nats-io/nats-core@3.0.0-11/interna
1818
import { assert, assertEquals, assertExists, fail } from "jsr:@std/assert";
1919
import { createInbox } from "../mod.ts";
2020
import type { Msg, NatsConnection } from "../mod.ts";
21-
import { NatsServer } from "./helpers/launcher.ts";
21+
import type { NatsServer } from "./helpers/launcher.ts";
2222

2323
Deno.test("resub - iter", async () => {
2424
const { ns, nc } = await setup();

src/unsafe_tests/tlsunsafe_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { resolve, join} from "jsr:@std/path";
1+
import { join, resolve } from "jsr:@std/path";
22
import { NatsServer } from "../tests/helpers/launcher.ts";
33
import { connect } from "../mod.ts";
44

0 commit comments

Comments
 (0)