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

14 lines
416 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
2022-10-04 01:22:41 +00:00
test("Logs nothing on render", async () => {
const { unmount } = render(<SquiggleChart code={"normal(0, 1)"} />);
unmount();
2022-09-30 00:22:14 +00:00
2022-10-04 01:22:41 +00:00
expect(console.log).not.toBeCalled();
expect(console.warn).not.toBeCalled();
expect(console.error).not.toBeCalled();
});