mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
091346dfe8
* wip * Remove obsolete snapshots * simplify * chore(test): Convert mocks to TypeScript and tighten fetch mock types Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> * Remove unneccessary patches * Migrate to msw instead of custom fetch mock * Address PR review comments - Split chained vi.useFakeTimers().setSystemTime() into separate calls. - Switch test setup to dynamic imports so EventEmitter.defaultMaxListeners assignment runs before module init (static imports were hoisted above it). - Drop redundant NODE_ENV guard in monkeyPatchSequelizeErrorsForJest; its sole caller already gates on env.isTest. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
34 lines
677 B
Plaintext
34 lines
677 B
Plaintext
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`presents a user 1`] = `
|
|
{
|
|
"avatarUrl": null,
|
|
"color": "#FF5C80",
|
|
"createdAt": undefined,
|
|
"deletedAt": undefined,
|
|
"id": "123",
|
|
"isSuspended": false,
|
|
"lastActiveAt": undefined,
|
|
"name": "Test User",
|
|
"role": "member",
|
|
"timezone": undefined,
|
|
"updatedAt": undefined,
|
|
}
|
|
`;
|
|
|
|
exports[`presents a user without slack data 1`] = `
|
|
{
|
|
"avatarUrl": null,
|
|
"color": "#FF5C80",
|
|
"createdAt": undefined,
|
|
"deletedAt": undefined,
|
|
"id": "123",
|
|
"isSuspended": false,
|
|
"lastActiveAt": undefined,
|
|
"name": "Test User",
|
|
"role": "member",
|
|
"timezone": undefined,
|
|
"updatedAt": undefined,
|
|
}
|
|
`;
|