Skip to content

Commit

Permalink
rewrite messages test to be able to run in paralell
Browse files Browse the repository at this point in the history
  • Loading branch information
szuperaz committed Nov 22, 2023
1 parent d7670df commit 73cebda
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion __tests__/messages.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ import { createTestClient } from "./create-test-client";
import { StreamChannel } from "../src/StreamChannel";
import { StreamClient } from "../src/StreamClient";
import { TranslateMessageRequestLanguageEnum } from "../src/gen/chat";
import { v4 as uuidv4 } from "uuid";

describe("messages API", () => {
let client: StreamClient;
const channelId = "stream-node-test-channel";
const channelId = "streamnodetest" + uuidv4();
let channel: StreamChannel;
const user = {
id: "stream-node-test-user",
Expand Down

0 comments on commit 73cebda

Please sign in to comment.