Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
amyleadem committed Aug 20, 2024
1 parent 5876e4b commit 8c67e36
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/components/usa-identifier/usa-identifier.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,16 @@ describe("usa-identifier component", async () => {

it("adds both logos to the component", () => {
expect(
getInsideIdentifier().querySelector(".usa-identifier__logos").children.length
getInsideIdentifier().querySelector(".usa-identifier__logos").children
.length,
).toBeGreaterThan(1);
});

it("generates the required links list with seven child links", () => {
expect(
getInsideIdentifier().querySelector(".usa-identifier__required-links-list").children.length
getInsideIdentifier().querySelector(
".usa-identifier__required-links-list",
).children.length,
).toBe(7);
});
});
});

0 comments on commit 8c67e36

Please sign in to comment.