This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/server/presenters/user.test.js

23 lines
463 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",
});
expect(user).toMatchSnapshot();
});
it("presents a user without slack data", async () => {
const user = presentUser({
id: "123",
name: "Test User",
username: "testuser",
});
expect(user).toMatchSnapshot();
});