Skip to content

Commit

Permalink
fix: editing test caes
Browse files Browse the repository at this point in the history
  • Loading branch information
shrouti1507 committed Aug 20, 2024
1 parent c4e337f commit 7fc3c1b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/v0/destinations/attentive_tag/util.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,10 @@ describe('arePropertiesValid', () => {
const result = arePropertiesValid('');
expect(result).toBe(true);
});

// returns false for empty string properties input
it('should return false for non object properties input', () => {
const result = arePropertiesValid('1234');
expect(result).toBe(false);
});
});

0 comments on commit 7fc3c1b

Please sign in to comment.