15 lines
265 B
JavaScript
15 lines
265 B
JavaScript
|
import React from "react";
|
||
|
import { TestContext } from "react-admin";
|
||
|
import { shallow } from "enzyme";
|
||
|
import App from "./App";
|
||
|
|
||
|
describe("App", () => {
|
||
|
it("renders", () => {
|
||
|
shallow(
|
||
|
<TestContext>
|
||
|
<App />
|
||
|
</TestContext>
|
||
|
);
|
||
|
});
|
||
|
});
|