import { loadStory } from "@opensea/testing-utils/story" import { expect, test } from "../../../tests/test" import * as stories from "./Label.stories" test("AllVariants light", async ({ page }) => { const story = await loadStory(page, stories, "AllVariants", "light") await expect(story).toHaveScreenshot() }) test("AllVariants dark", async ({ page }) => { const story = await loadStory(page, stories, "AllVariants", "dark") await expect(story).toHaveScreenshot() })