diff --git a/lib/components/block-link/block-link.a11y.test.ts b/lib/components/block-link/block-link.a11y.test.ts index 2fd482bc69..5c1c9f9b52 100644 --- a/lib/components/block-link/block-link.a11y.test.ts +++ b/lib/components/block-link/block-link.a11y.test.ts @@ -3,12 +3,13 @@ import { defaultOptions, runComponentTests } from "../../test/test-utils"; import "../../index"; // eslint-disable-next-line @typescript-eslint/no-explicit-any -const blockLinkTemplate = ({ component, testid }: any) => html`
- ${component} -
`; +const blockLinkTemplate = ({ component, testid }: any) => + html`
+ ${component} +
`; describe("block-link", () => { // Base block link diff --git a/lib/components/block-link/block-link.visual.test.ts b/lib/components/block-link/block-link.visual.test.ts index 1d23c6c42f..1d41d929e9 100644 --- a/lib/components/block-link/block-link.visual.test.ts +++ b/lib/components/block-link/block-link.visual.test.ts @@ -3,12 +3,13 @@ import { defaultOptions, runComponentTests } from "../../test/test-utils"; import "../../index"; // eslint-disable-next-line @typescript-eslint/no-explicit-any -const blockLinkTemplate = ({ component, testid }: any) => html`
- ${component} -
`; +const blockLinkTemplate = ({ component, testid }: any) => + html`
+ ${component} +
`; describe("block-link", () => { // Base block link diff --git a/lib/components/card/card.visual.test.ts b/lib/components/card/card.visual.test.ts index 209322446f..903ec2d49a 100644 --- a/lib/components/card/card.visual.test.ts +++ b/lib/components/card/card.visual.test.ts @@ -3,12 +3,13 @@ import { defaultOptions, runComponentTests } from "../../test/test-utils"; import "../../index"; // eslint-disable-next-line @typescript-eslint/no-explicit-any -const cardTemplate = ({ component, testid }: any) => html`
- ${component} -
`; +const cardTemplate = ({ component, testid }: any) => + html`
+ ${component} +
`; const baseChild = `

Base card title

diff --git a/lib/components/toast/toast.test.ts b/lib/components/toast/toast.test.ts index 66b08904a3..4382b3c1a1 100644 --- a/lib/components/toast/toast.test.ts +++ b/lib/components/toast/toast.test.ts @@ -6,29 +6,30 @@ import { showToast, hideToast } from "../../controllers"; const user = userEvent.setup(); -const testToast = (hidden = true) => html` - -
- -
`; +const testToast = (hidden = true) => + html` + +
+ +
`; describe("toast", () => { it("trigger should make toast visible", async () => {