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