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>
67 lines
1.6 KiB
Text
67 lines
1.6 KiB
Text
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`typanionResolver > should return a single error from typanionResolver when validation fails 1`] = `
|
|
{
|
|
"errors": {
|
|
"accessToken": {
|
|
"message": "Expected a string (got undefined)",
|
|
"ref": undefined,
|
|
},
|
|
"birthYear": {
|
|
"message": "Expected a number (got "birthYear")",
|
|
"ref": undefined,
|
|
},
|
|
"email": {
|
|
"message": "Expected to match the pattern /^\\S+@\\S+$/ (got an empty string)",
|
|
"ref": {
|
|
"name": "email",
|
|
},
|
|
},
|
|
"enabled": {
|
|
"message": "Expected a boolean (got undefined)",
|
|
"ref": undefined,
|
|
},
|
|
"like": {
|
|
"id": {
|
|
"message": "Expected a number (got "z")",
|
|
"ref": undefined,
|
|
},
|
|
"name": {
|
|
"message": "Expected a string (got undefined)",
|
|
"ref": undefined,
|
|
},
|
|
},
|
|
"password": {
|
|
"message": "Expected to match the pattern /.*[A-Z].*/ (got "___")",
|
|
"ref": {
|
|
"name": "password",
|
|
},
|
|
},
|
|
"repeatPassword": {
|
|
"message": "Expected a string (got undefined)",
|
|
"ref": undefined,
|
|
},
|
|
"tags": [
|
|
{
|
|
"message": "Expected a string (got 1)",
|
|
"ref": undefined,
|
|
},
|
|
{
|
|
"message": "Expected a string (got 2)",
|
|
"ref": undefined,
|
|
},
|
|
{
|
|
"message": "Expected a string (got 3)",
|
|
"ref": undefined,
|
|
},
|
|
],
|
|
"username": {
|
|
"message": "Expected a string (got undefined)",
|
|
"ref": {
|
|
"name": "username",
|
|
},
|
|
},
|
|
},
|
|
"values": {},
|
|
}
|
|
`;
|