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.
Files
outline/server/presenters/__snapshots__/user.test.js.snap
Rubén Moya 93ac9892d5 fix: take into account user lang in Time component (#1793)
This PR takes into account the user selected language to format the time in the Time component.

Co-authored-by: tommoor <tom.moor@gmail.com>
2021-01-14 09:08:14 -08:00

28 lines
546 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`presents a user 1`] = `
Object {
"avatarUrl": undefined,
"createdAt": undefined,
"id": "123",
"isAdmin": undefined,
"isSuspended": undefined,
"language": "en_US",
"lastActiveAt": undefined,
"name": "Test User",
}
`;
exports[`presents a user without slack data 1`] = `
Object {
"avatarUrl": undefined,
"createdAt": undefined,
"id": "123",
"isAdmin": undefined,
"isSuspended": undefined,
"language": "en_US",
"lastActiveAt": undefined,
"name": "Test User",
}
`;