Commit 49a4cc3a authored by Donald Cook's avatar Donald Cook

Updated getter test

parent ec1b2d62
...@@ -35,7 +35,7 @@ describe('Getters Notes Store', () => { ...@@ -35,7 +35,7 @@ describe('Getters Notes Store', () => {
notesData: notesDataMock, notesData: notesDataMock,
userData: userDataMock, userData: userDataMock,
noteableData: noteableDataMock, noteableData: noteableDataMock,
descriptionVersion: 'descriptionVersion', descriptionVersions: 'descriptionVersions',
}; };
}); });
...@@ -387,9 +387,9 @@ describe('Getters Notes Store', () => { ...@@ -387,9 +387,9 @@ describe('Getters Notes Store', () => {
}); });
}); });
describe('descriptionVersion', () => { describe('descriptionVersions', () => {
it('should return `descriptionVersion`', () => { it('should return `descriptionVersions`', () => {
expect(getters.descriptionVersion(state)).toEqual('descriptionVersion'); expect(getters.descriptionVersions(state)).toEqual('descriptionVersions');
}); });
}); });
}); });
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment