chore: remove out of scope formatting changes

This commit is contained in:
Dustin Healy 2025-08-13 20:59:08 -07:00
parent 6605b6c800
commit 800391b264
40 changed files with 121 additions and 107 deletions

View file

@ -258,7 +258,7 @@ describe('Zod Schemas', () => {
email: 'john@example.com',
password: 'password123',
confirm_password: 'password123',
extraField: "I shouldn't be here",
extraField: 'I shouldn\'t be here',
});
expect(result.success).toBe(true);
});
@ -407,7 +407,7 @@ describe('Zod Schemas', () => {
'john{doe}', // Contains `{` and `}`
'j', // Only one character
'a'.repeat(81), // More than 80 characters
"' OR '1'='1'; --", // SQL Injection
'\' OR \'1\'=\'1\'; --', // SQL Injection
'{$ne: null}', // MongoDB Injection
'<script>alert("XSS")</script>', // Basic XSS
'"><script>alert("XSS")</script>', // XSS breaking out of an attribute