From a239212f0b7afad4903b34eba9febf1f6e9f8718 Mon Sep 17 00:00:00 2001 From: Garrett Delfosse Date: Wed, 1 May 2024 15:45:25 -0400 Subject: [PATCH] fmt and increase timeout again --- github-upload-public-key/main.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/github-upload-public-key/main.test.ts b/github-upload-public-key/main.test.ts index 5c71464..45e1b5a 100644 --- a/github-upload-public-key/main.test.ts +++ b/github-upload-public-key/main.test.ts @@ -24,8 +24,8 @@ describe("github-upload-public-key", async () => { let exec = await execContainer(id, ["bash", "-c", instance.script]); expect(exec.stdout).toContain("Coder public SSH key uploaded to GitHub!"); expect(exec.exitCode).toBe(0); - // we need to increase timeout to pull the container - }, 10000); + // we need to increase timeout to pull the container + }, 15000); it("does nothing if one already exists", async () => { const { instance, id } = await setupContainer();