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>
40 lines
830 B
Text
40 lines
830 B
Text
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`effectTsResolver > should return a single error from effectTsResolver when validation fails 1`] = `
|
|
{
|
|
"errors": {
|
|
"animal": {
|
|
"message": "Expected "snake", actual ["dog"]",
|
|
"ref": undefined,
|
|
"type": "Type",
|
|
},
|
|
"luckyNumbers": [
|
|
,
|
|
,
|
|
{
|
|
"message": "Expected number, actual "3"",
|
|
"ref": undefined,
|
|
"type": "Type",
|
|
},
|
|
],
|
|
"password": {
|
|
"message": "At least 1 special character.",
|
|
"ref": {
|
|
"name": "password",
|
|
},
|
|
"type": "Refinement",
|
|
},
|
|
"vehicles": [
|
|
,
|
|
{
|
|
"horsepower": {
|
|
"message": "is missing",
|
|
"ref": undefined,
|
|
"type": "Missing",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
"values": {},
|
|
}
|
|
`;
|