vylbot-app/tests/commands/__snapshots__/warn.test.ts.snap
Ethan Lane 97bd3d675b
All checks were successful
Test / build (push) Successful in 15s
WIP: Give warn command snapshots names
2024-06-28 18:24:17 +01:00

39 lines
766 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Execute EXPECT user to be warned: savedAudit 1`] = `
{
"AuditId": Any<String>,
"AuditType": 1,
"Id": Any<String>,
"ModeratorId": "moderatorId",
"Reason": "Test reason",
"ServerId": "guildId",
"UserId": "userId",
"WhenCreated": Any<Date>,
"WhenUpdated": Any<Date>,
}
`;
exports[`Execute EXPECT user to be warned: sentEmbeds 1`] = `
[
{
"color": 3166394,
"description": "<@userId> \`userTag\`",
"fields": [
{
"name": "Moderator",
"value": "<@moderatorId>",
},
{
"name": "Reason",
"value": "Test reason",
},
],
"thumbnail": {
"url": "https://google.com/avatar.png",
},
"title": "Member Warned",
},
]
`;