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