Skip to content

Commit

Permalink
chore: explicitly add truthiness test for graphs
Browse files Browse the repository at this point in the history
  • Loading branch information
jeswr committed Sep 8, 2024
1 parent 37c7380 commit 7d086a4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/N3Store-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2142,6 +2142,7 @@ describe('Store', () => {
for (const s2 of stores) {
expect(s1.intersection(s2).size).toBeLessThanOrEqual(s1.size);
expect(s1.intersection(s2).size).toBeLessThanOrEqual(s2.size);
expect(s1.intersection(s2)._graphs).toBeTruthy();
expect(s1.intersection(s2).equals(s2.intersection(s1)));
expect(s1.union(s2).intersection(s1).equals(s1));
expect(s1.intersection(s2).union(s1).equals(s1));
Expand Down

0 comments on commit 7d086a4

Please sign in to comment.