Files
talk/src/core/client/test/mocks.ts
T
KiwiandWyatt Johnson 538e1fca9d [CORL-139, CORL-140] Community (#2239)
* feat: Add table ui component

* feat: community user table

* feat: filters and role change

* fix: add some comments

* fix: user viewer

* fix: snapshots

* test: add tests

* fix: better popover experience

* fix: test

* chore: use enum

* feat: prevent server side setting your own role

* fix: cleanup
2019-03-22 20:13:11 +00:00

7 lines
328 B
TypeScript

jest.mock("fluent-intl-polyfill/compat", () => null);
jest.mock("react-transition-group", () => ({
CSSTransition: (props: { children: React.ReactNode }) => props.children,
Transition: (props: { children: React.ReactNode }) => props.children,
TransitionGroup: (props: { children: React.ReactNode }) => props.children,
}));