mirror of
https://github.com/UA-Fediland/synapse-admin.git
synced 2024-11-14 18:44:32 +00:00
15 lines
289 B
JavaScript
15 lines
289 B
JavaScript
|
import React from "react";
|
||
|
import { TestContext } from "react-admin";
|
||
|
import { shallow } from "enzyme";
|
||
|
import LoginPage from "./LoginPage";
|
||
|
|
||
|
describe("LoginForm", () => {
|
||
|
it("renders", () => {
|
||
|
shallow(
|
||
|
<TestContext>
|
||
|
<LoginPage />
|
||
|
</TestContext>
|
||
|
);
|
||
|
});
|
||
|
});
|