aotds-docks/src/routes/export/[format=outputFormat]/Serialized.test.js

15 lines
362 B
JavaScript

import { render } from "@testing-library/svelte";
import "@testing-library/jest-dom";
import Serialized from "./Serialized.svelte";
test("basic", () => {
const { getByText } = render(Serialized, {
props: {
data: "hello world",
format: "json",
},
});
expect(getByText("hello world")).toBeInTheDocument();
});