Files
outline/server/routes/api/comments/__snapshots__/comments.test.ts.snap

29 lines
585 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`#comments.create should require authentication 1`] = `
{
"error": "authentication_required",
"message": "Authentication required",
"ok": false,
"status": 401,
}
`;
exports[`#comments.info should require authentication 1`] = `
{
"error": "authentication_required",
"message": "Authentication required",
"ok": false,
"status": 401,
}
`;
exports[`#comments.list should require authentication 1`] = `
{
"error": "authentication_required",
"message": "Authentication required",
"ok": false,
"status": 401,
}
`;