mirror of
https://github.com/UA-Fediland/synapse-admin.git
synced 2025-07-01 23:37:21 +00:00
14 lines
289 B
JavaScript
14 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>
|
|
);
|
|
});
|
|
});
|