Files
outline/server/presenters/user.test.js
2016-09-09 01:35:39 -07:00

20 lines
361 B
JavaScript

import presentUser from './user';
import ctx from '../../__mocks__/ctx';
it('presents a user', async () => {
const user = await presentUser(
ctx,
{
id: '123',
name: 'Test User',
username: 'testuser',
slackData: {
image_192: 'http://example.com/avatar.png',
},
},
);
expect(user).toMatchSnapshot();
});