12 lines
338 B
TypeScript
12 lines
338 B
TypeScript
import PreviewAll from "$components/panel/PreviewAll.svelte";
|
|
import { render } from "@testing-library/svelte";
|
|
import { describe, expect, it } from "vitest";
|
|
|
|
describe("PreviewAll.svelte", () => {
|
|
it("should render without crashing", () => {
|
|
const { container } = render(PreviewAll);
|
|
|
|
expect(container).toBeTruthy();
|
|
});
|
|
});
|