blob: 7d476b439d973f6c21fff757cef0561c8387273a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
import { mount } from 'enzyme';
import wait from 'waait';
import PleaseSignIn from '../components/PleaseSignIn';
import { CURRENT_USER_QUERY } from '../components/User';
import { MockedProvider } from 'react-apollo/test-utils';
import { fakeUser } from '../lib/testUtils';
const notSignedInMocks = [
{
request: { query: CURRENT_USER_QUERY },
result: { data: { me: null } },
},
];
const signedInMocks = [
{
request: { query: CURRENT_USER_QUERY },
result: { data: { me: fakeUser() } },
},
];
describe('<PleaseSignIn/>', () => {
it('renders the sign in dialog to logged out users', async () => {
const wrapper = mount(
<MockedProvider mocks={notSignedInMocks}>
<PleaseSignIn />
</MockedProvider>
);
await wait();
wrapper.update();
expect(wrapper.text()).toContain('Please Sign In before Continuing');
const SignIn = wrapper.find('Signin');
expect(SignIn.exists()).toBe(true);
});
it('renders the child component when the user is signed in', async () => {
const Hey = () => <p>Hey!</p>;
const wrapper = mount(
<MockedProvider mocks={signedInMocks}>
<PleaseSignIn>
<Hey />
</PleaseSignIn>
</MockedProvider>
);
await wait();
wrapper.update();
// expect(wrapper.find('Hey').exists()).toBe(true);
expect(wrapper.contains(<Hey />)).toBe(true);
});
});
|