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>
43 lines
973 B
Text
43 lines
973 B
Text
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`nopeResolver > should return a single error from nopeResolver when validation fails 1`] = `
|
|
{
|
|
"errors": {
|
|
"birthYear": {
|
|
"message": "The field is not a valid number",
|
|
"ref": undefined,
|
|
},
|
|
"like": {
|
|
"id": {
|
|
"message": "The field is not a valid number",
|
|
"ref": undefined,
|
|
},
|
|
"name": {
|
|
"message": "This field is required",
|
|
"ref": undefined,
|
|
},
|
|
},
|
|
"password": {
|
|
"message": "One uppercase character",
|
|
"ref": {
|
|
"name": "password",
|
|
},
|
|
},
|
|
"repeatPassword": {
|
|
"message": "This field is required",
|
|
"ref": undefined,
|
|
},
|
|
"tags": {
|
|
"message": "One or more elements are of invalid type",
|
|
"ref": undefined,
|
|
},
|
|
"username": {
|
|
"message": "This field is required",
|
|
"ref": {
|
|
"name": "username",
|
|
},
|
|
},
|
|
},
|
|
"values": {},
|
|
}
|
|
`;
|