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/__snapshots__/user.test.js.snap

22 lines
407 B
Plaintext
Raw Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`presents a user 1`] = `
Object {
"avatarUrl": "http://example.com/avatar.png",
"createdAt": undefined,
"id": "123",
"name": "Test User",
"username": "testuser",
}
`;
2016-09-11 23:34:57 +00:00
exports[`presents a user without slack data 1`] = `
2016-09-11 23:34:57 +00:00
Object {
"avatarUrl": null,
"createdAt": undefined,
2016-09-11 23:34:57 +00:00
"id": "123",
"name": "Test User",
"username": "testuser",
2016-09-11 23:34:57 +00:00
}
`;