Files
talk/src/core/client/admin/components/NavigationLink.spec.tsx
T
KiwiandWyatt Johnson bc5db7b599 [next] Admin auth + design (#2056)
* feat: extract jwt information

* feat: login status dependent auto redirect

* feat: Sign Out button

* feat: add a 404 page

* feat: improve loading state and use auth token info

* feat: redirect to previous destination

* feat: implement new design

* fix: change asset to story

* feat: add translations

* feat: more compact design

* test: add unit tests

* chore: refactor NavigationLink

* test: add integration tests

* chore: refactor replaceHistoryLocation

* fix: typo

* fix: property name typo
2018-10-31 23:11:32 +00:00

16 lines
396 B
TypeScript

import { shallow } from "enzyme";
import React from "react";
import { PropTypesOf } from "talk-framework/types";
import NavigationLink from "./NavigationLink";
it("renders correctly", () => {
const props: PropTypesOf<typeof NavigationLink> = {
to: "/moderate",
children: "link",
};
const wrapper = shallow(<NavigationLink {...props} />);
expect(wrapper).toMatchSnapshot();
});