Skip to content

Commit accaa45

Browse files
authored
fix: correct typos (#768)
1 parent 5719125 commit accaa45

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/utils/auth.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,13 @@ describe('utils/auth.tsx', () => {
109109
user: null,
110110
};
111111

112-
it('should add a github.com accont', async () => {
112+
it('should add a github.com account', async () => {
113113
const result = await auth.addAccount(accounts, '123-456', 'github.com');
114114

115115
expect(result).toEqual({ ...accounts, token: '123-456' });
116116
});
117117

118-
it('should add an enterprise accont', async () => {
118+
it('should add an enterprise account', async () => {
119119
const result = await auth.addAccount(
120120
accounts,
121121
'123-456',

src/utils/remove-notification.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ describe('utils/remove-notification.ts', () => {
88
const notificationId = mockedSingleNotification.id;
99
const hostname = mockedSingleAccountNotifications[0].hostname;
1010

11-
it('should remove a notifiction if it exists', () => {
11+
it('should remove a notification if it exists', () => {
1212
expect(mockedSingleAccountNotifications[0].notifications.length).toBe(1);
1313

1414
const result = removeNotification(

0 commit comments

Comments
 (0)