synapse-admin/src/App.test.js

15 lines
261 B
JavaScript
Raw Normal View History

import React from "react";
import { TestContext } from "ra-test";
import { shallow } from "enzyme";
import App from "./App";
describe("App", () => {
it("renders", () => {
shallow(
<TestContext>
<App />
</TestContext>
);
});
});