C2-18497 Fix grammar error on spec title

This commit is contained in:
eliseschravendeel 2023-03-14 11:17:25 +01:00 committed by Salah Benmoussati
parent 0fb76420ee
commit b2f230121e
2 changed files with 7 additions and 3 deletions

8
.gitignore vendored
View File

@ -1,8 +1,6 @@
node_modules
dist
js/preload/_*.js
.idea/
coverage/
npm-debug.log
DerivedData/
*.pbxuser
@ -39,3 +37,9 @@ build
# Local History plugin
.history
# Dependency directories
node_modules
# Coverage directory used by tools like istanbul
coverage/

View File

@ -30,7 +30,7 @@ describe('Toast notification component', () => {
expect(spy).toBeCalledWith('close-notification', 0);
});
it('should click on the notification when use clicks on main container', async () => {
it('should click on the notification when the user clicks on main container', async () => {
const spy = jest.spyOn(ipcRenderer, 'send');
const notificationContainer = wrapper.find('.main-container');
expect(notificationContainer).toBeTruthy();