This commit is contained in:
Tom Moor
2019-04-18 18:51:16 -07:00
parent f491029c21
commit 56a6db7d2a
6 changed files with 11 additions and 14 deletions

View File

@ -2,7 +2,7 @@
import presentUser from './user';
it('presents a user', async () => {
const user = await presentUser({
const user = presentUser({
id: '123',
name: 'Test User',
username: 'testuser',
@ -15,7 +15,7 @@ it('presents a user', async () => {
});
it('presents a user without slack data', async () => {
const user = await presentUser({
const user = presentUser({
id: '123',
name: 'Test User',
username: 'testuser',