Skip to content

Commit

Permalink
refactor: adjust code format in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
luckasnix committed Mar 4, 2024
1 parent a582fa8 commit 01a78f2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/object-graph.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ describe('get()', () => {
describe('getAll()', () => {
test('get all nodes of the object graph', () => {
const shirtsObjectGraph = new ObjectGraph<Shirt>(shirtsMock, (shirt) => shirt.sku);

const returnedShirtsObjectGraph = shirtsObjectGraph.getAll();

expect(shirtsMock.length).toBe(returnedShirtsObjectGraph.length);
Expand Down

0 comments on commit 01a78f2

Please sign in to comment.