Commit 318bbe82 authored by Grant's avatar Grant
Browse files

allow mbin startup to take 60s instead of 10s

parent b77227cd
Loading
Loading
Loading
Loading
Loading
+19 −16
Original line number Diff line number Diff line
@@ -176,7 +176,8 @@ describe.for(
  let sessionCode: string;
  let authSession: AuthSession;

  beforeAll(async () => {
  beforeAll(
    async () => {
      if (!DRY_SEND) TestKit = await FediTestKit.create(account);
      sessionId = "test-" + label + "-" + randomUUID();
      sessionCode = AuthSession.generateCode();
@@ -191,7 +192,9 @@ describe.for(
      });

      if (!DRY_SEND) await TestKit.setup();
  });
    },
    account.type === "MBIN" ? 60000 : 10000
  );

  test.sequential("APub#sendDM", async () => {
    await APub.sendDM(authSession);