Skip to content

Commit

Permalink
Fix Unit test, linting, and formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Gcolon021 committed Oct 22, 2024
1 parent ef6c63f commit 843fccd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/routes/login/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ unauthedTest.describe('Login page', () => {
expect(parsedGoogleConsent).toHaveProperty('ad_storage', 'denied');
expect(parsedGoogleConsent).toHaveProperty('analytics_storage', 'granted');
expect(parsedGoogleConsent).toHaveProperty('personalization_storage', 'granted');
expect(parsedGoogleConsent).toHaveProperty('security_storage', 'granted');
expect(parsedGoogleConsent).toHaveProperty('ad_user_data', 'denied');
expect(parsedGoogleConsent).toHaveProperty('ad_personalization', 'denied');
expect(parsedGoogleConsent).toHaveProperty('ad_data', 'denied');
}
Expand All @@ -179,7 +179,7 @@ unauthedTest.describe('Login page', () => {
expect(parsedGoogleConsent).toHaveProperty('ad_storage', 'denied');
expect(parsedGoogleConsent).toHaveProperty('analytics_storage', 'denied');
expect(parsedGoogleConsent).toHaveProperty('personalization_storage', 'denied');
expect(parsedGoogleConsent).toHaveProperty('security_storage', 'denied');
expect(parsedGoogleConsent).toHaveProperty('ad_user_data', 'denied');
expect(parsedGoogleConsent).toHaveProperty('ad_personalization', 'denied');
expect(parsedGoogleConsent).toHaveProperty('ad_data', 'denied');
}
Expand Down

0 comments on commit 843fccd

Please sign in to comment.