diff --git a/playwright/src/tests/api.spec.ts b/playwright/src/tests/api.spec.ts index 5b917c4f..a90532f8 100644 --- a/playwright/src/tests/api.spec.ts +++ b/playwright/src/tests/api.spec.ts @@ -95,7 +95,8 @@ test.describe("API endpoints", () => { }) await test.step("Get board history", async () => { - expect(await Api.getBoardHistory(accessToken, id)).toEqual(expect.arrayContaining([])) + const history = (await Api.getBoardHistory(accessToken, id)).history + expect(history.length).toBeGreaterThan(0) }) await test.step("Get board as CSV", async () => {