Skip to content

Commit 7f8bca0

Browse files
authored
Add timeout for integration test (#25)
This test times out in main. This PR adds a timeout consistent with other test cases in the file. https://github.com/WATonomous/linux-directory-provisioner/actions/runs/14736401811/job/41364077651 <img width="2032" alt="image" src="https://github.com/user-attachments/assets/e8900b66-504d-4e57-8b54-6686457f0afe" />
1 parent 0c240b9 commit 7f8bca0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration-tests/basic.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ describe("Basic", () => {
240240
// Check that the appropriate keys no longer exist
241241
await ensureNotExists(container, "/tmp/ssh-keys-user1-1001-authorized_keys");
242242
await ensureNotExists(container, "/tmp/ssh-keys-user2-1002-authorized_keys");
243-
})
243+
}, 60000);
244244

245245
test("should throw an error if the parent directory of the ssh key location does not exist", async () => {
246246
basicConfig.ssh_authorized_keys_path = "/tmp/ssh-keys/%u/%U/.ssh/authorized_keys";

0 commit comments

Comments
 (0)