Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ericanderson committed Feb 13, 2024
1 parent e130e76 commit 2d40fd9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,10 @@ describe("OsdkObjectSet", () => {

it("exposes descriptions", () => {
const os = createBaseTodoObjectSet(client);
console.log(os);
expect(os.description).toEqual("A todo object");
expect(os.properties.id.apiName).toEqual("id");
expect(os.properties.id.description).toEqual("The id of the Todo Object");
expect(os.properties.id.description).toEqual("The id");
expect(os.properties.body.apiName).toEqual("body");
expect(os.properties.body.description).toEqual("");
});
Expand Down

0 comments on commit 2d40fd9

Please sign in to comment.