2020-02-07 18:35:21 +03:00
|
|
|
import React from "react";
|
2021-04-21 10:44:49 +03:00
|
|
|
import { TestContext } from "ra-test";
|
2020-02-07 18:35:21 +03:00
|
|
|
import { shallow } from "enzyme";
|
|
|
|
import LoginPage from "./LoginPage";
|
|
|
|
|
|
|
|
describe("LoginForm", () => {
|
|
|
|
it("renders", () => {
|
|
|
|
shallow(
|
|
|
|
<TestContext>
|
|
|
|
<LoginPage />
|
|
|
|
</TestContext>
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|