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