Skip to content

Commit

Permalink
added exports required by tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aricart committed May 10, 2024
1 parent ce18121 commit 7e75e04
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/tests/queues_test.ts
Expand Up @@ -13,7 +13,8 @@
* limitations under the License.
*/

import { createInbox, Subscription } from "../mod.ts";
import { createInbox } from "../mod.ts";
import type { Subscription } from "../mod.ts";
import { assertEquals } from "jsr:@std/assert";
import { cleanup, setup } from "./helpers/mod.ts";

Expand Down
2 changes: 1 addition & 1 deletion src/tests/resub_test.ts
Expand Up @@ -18,7 +18,7 @@ import type { NatsConnectionImpl } from "jsr:@nats-io/nats-core@3.0.0-11/interna
import { assert, assertEquals, assertExists, fail } from "jsr:@std/assert";
import { createInbox } from "../mod.ts";
import type { Msg, NatsConnection } from "../mod.ts";
import { NatsServer } from "./helpers/launcher.ts";
import type { NatsServer } from "./helpers/launcher.ts";

Deno.test("resub - iter", async () => {
const { ns, nc } = await setup();
Expand Down
2 changes: 1 addition & 1 deletion src/unsafe_tests/tlsunsafe_test.ts
@@ -1,4 +1,4 @@
import { resolve, join} from "jsr:@std/path";
import { join, resolve } from "jsr:@std/path";
import { NatsServer } from "../tests/helpers/launcher.ts";
import { connect } from "../mod.ts";

Expand Down

0 comments on commit 7e75e04

Please sign in to comment.