squiggle/packages/components/test/basic.test.tsx

14 lines
392 B
TypeScript
Raw Normal View History

import { render } from "@testing-library/react";
import React from "react";
import "@testing-library/jest-dom";
import { SquiggleChart } from "../src/index";
2022-09-30 00:22:14 +00:00
test("Logs no warnings or errors", async () => {
debugger;
const { unmount } = render(<SquiggleChart code={"normal(0, 1)"} />);
unmount();
2022-09-30 00:22:14 +00:00
expect(console.warn).not.toBeCalled();
expect(console.error).not.toBeCalled();
});