Skip to content

Commit

Permalink
prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vsvamsi1 committed Oct 4, 2024
1 parent cc195fb commit c6ee0c3
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,10 @@ function testPreloadMetadata(viewOrEditMode) {
);

// check if req
const isSubset = preloadLinks.every(item => allRequestsDuringPageLoad.includes(item));
expect(isSubset).to.be.true;
const isSubset = preloadLinks.every((item) =>
allRequestsDuringPageLoad.includes(item),
);
expect(isSubset).to.be.true;
});
}

Expand Down

0 comments on commit c6ee0c3

Please sign in to comment.