Skip to content

Commit

Permalink
✅ add test for personality length
Browse files Browse the repository at this point in the history
  • Loading branch information
chase-manning committed Aug 18, 2024
1 parent e7c1010 commit 6d23a58
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/v1.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ test("there are no missing data points", () => {
expect(typeof generalInformation.group).toBe("string");
expect(generalInformation.personalityTraits).toBeDefined();
expect(Array.isArray(generalInformation.personalityTraits)).toBe(true);
expect(generalInformation.personalityTraits.length).toBe(3);
expect(generalInformation.shortDescription).toBeDefined();
expect(typeof generalInformation.shortDescription).toBe("string");
expect(generalInformation.longDescription).toBeDefined();
Expand Down

0 comments on commit 6d23a58

Please sign in to comment.