Skip to content

Commit

Permalink
adjust tests to iterable return values
Browse files Browse the repository at this point in the history
  • Loading branch information
aleneum committed Aug 16, 2023
1 parent a69d2c4 commit c8be811
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/zenkit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe("Zenkit API operations", () => {
const zenkit = await Zenkit.createAsync();
expect(zenkit.my).not.toBeNull();
expect(zenkit.workspace(".")).not.toBeNull();
expect(zenkit.workspaces).toHaveLength(1);
expect(Array.from(zenkit.workspaces)).toHaveLength(1);
});

it("should get the workspace 'Test Bot Workspace'", async () => {
Expand Down

0 comments on commit c8be811

Please sign in to comment.