Files
outline/server/presenters/user.test.js

27 lines
558 B
JavaScript

/* eslint-disable flowtype/require-valid-file-annotation */
import presentUser from "./user";
it("presents a user", async () => {
const user = presentUser({
id: "123",
name: "Test User",
username: "testuser",
slackData: {
image_192: "http://example.com/avatar.png",
},
});
expect(user).toMatchSnapshot();
});
it("presents a user without slack data", async () => {
const user = presentUser({
id: "123",
name: "Test User",
username: "testuser",
slackData: null,
});
expect(user).toMatchSnapshot();
});