Rocky_Mountain_Vending/.pnpm-store/v10/files/cd/a6f48ff9b02666495009aef5fef2e561a262e38c732261b01920635124c845d54991d153ea9995c71d2d9a7ad839f3342829b84fe6c2039803687b4cc9e551
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

129 lines
2.9 KiB
Text

// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`fluentValidationResolver > should return a single error from fluentValidationResolver when validation fails 1`] = `
{
"errors": {
"birthYear": {
"message": "Value is not valid",
"ref": undefined,
"type": "validation",
},
"email": {
"message": "Not a valid email address",
"ref": {
"name": "email",
},
"type": "validation",
},
"password": {
"message": "One uppercase character",
"ref": {
"name": "password",
},
"type": "validation",
},
"repeatPassword": {
"message": "Value is not valid",
"ref": undefined,
"type": "validation",
},
},
"values": {},
}
`;
exports[`fluentValidationResolver > should return a single error from fluentValidationResolver with \`mode: sync\` when validation fails 1`] = `
{
"errors": {
"birthYear": {
"message": "Value is not valid",
"ref": undefined,
"type": "validation",
},
"email": {
"message": "Not a valid email address",
"ref": {
"name": "email",
},
"type": "validation",
},
"password": {
"message": "One uppercase character",
"ref": {
"name": "password",
},
"type": "validation",
},
"repeatPassword": {
"message": "Value is not valid",
"ref": undefined,
"type": "validation",
},
},
"values": {},
}
`;
exports[`fluentValidationResolver > should return all the errors from fluentValidationResolver when validation fails with \`validateAllFieldCriteria\` set to true 1`] = `
{
"errors": {
"birthYear": {
"message": "Value is not valid",
"ref": undefined,
"type": "validation",
},
"email": {
"message": "Not a valid email address",
"ref": {
"name": "email",
},
"type": "validation",
},
"password": {
"message": "One uppercase character",
"ref": {
"name": "password",
},
"type": "validation",
},
"repeatPassword": {
"message": "Value is not valid",
"ref": undefined,
"type": "validation",
},
},
"values": {},
}
`;
exports[`fluentValidationResolver > should return all the errors from fluentValidationResolver when validation fails with \`validateAllFieldCriteria\` set to true and \`mode: sync\` 1`] = `
{
"errors": {
"birthYear": {
"message": "Value is not valid",
"ref": undefined,
"type": "validation",
},
"email": {
"message": "Not a valid email address",
"ref": {
"name": "email",
},
"type": "validation",
},
"password": {
"message": "One uppercase character",
"ref": {
"name": "password",
},
"type": "validation",
},
"repeatPassword": {
"message": "Value is not valid",
"ref": undefined,
"type": "validation",
},
},
"values": {},
}
`;