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

30 lines
594 B
Plaintext
Raw Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`presents a user 1`] = `
Object {
"avatarUrl": undefined,
2021-09-11 05:46:57 +00:00
"color": undefined,
"createdAt": undefined,
"id": "123",
"isAdmin": undefined,
"isSuspended": undefined,
"isViewer": undefined,
2021-05-16 01:22:42 +00:00
"lastActiveAt": undefined,
"name": "Test User",
}
`;
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": undefined,
2021-09-11 05:46:57 +00:00
"color": undefined,
"createdAt": undefined,
2016-09-11 23:34:57 +00:00
"id": "123",
"isAdmin": undefined,
"isSuspended": undefined,
"isViewer": undefined,
2021-05-16 01:22:42 +00:00
"lastActiveAt": undefined,
2016-09-11 23:34:57 +00:00
"name": "Test User",
}
`;