Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,10 @@ describe("calcite-shell-center-row", () => {
`;
await page.setContent(pageContent);

const element = await page.find("calcite-shell-center-row");
const element = await page.find("calcite-shell-center-row >>> div:first-of-type");

await page.waitForChanges();

expect(element.shadowRoot.firstElementChild).toHaveClass(CSS.actionBarContainer);
expect(element).toHaveClass(CSS.actionBarContainer);
});

it("should render action bar container last when action bar has end position", async () => {
Expand Down