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