// Import chart code
import { makeChart } from "./chart";
beforeEach(() => {
// Create
which is needed by the chart
document.body.innerHTML = `
`;
});
test("chart exists", () => {
const { root, chart } = makeChart();
// Test chart
expect(root).toBeDefined();
expect(chart).toBeDefined();
expect(chart.get("wheelX")).toBe("panX");
});