Skip to content

Commit

Permalink
✅ Update settings store tests
Browse files Browse the repository at this point in the history
  • Loading branch information
C-Valen committed Aug 6, 2024
1 parent deca269 commit f5f52c3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/stores/__tests__/SettingsStore.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const initialState = {
bugzillaApiKey: '',
jiraApiKey: '',
showNotifications: false,
affectsPerPage: 10,
};

// While not used in this file, store below depends on global pinia test instance
Expand All @@ -30,6 +31,7 @@ describe('SettingsStore', () => {
bugzillaApiKey: 'beep-beep-who-got-the-keys-to-the-jeep',
jiraApiKey: 'beep-beep-who-got-the-keys-to-the-jeep',
showNotifications: true,
affectsPerPage: 10,
});
expect(
settingsStore.settings.bugzillaApiKey === 'beep-beep-who-got-the-keys-to-the-jeep'
Expand Down

0 comments on commit f5f52c3

Please sign in to comment.