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

Updated getter test

parent ec1b2d62
......@@ -35,7 +35,7 @@ describe('Getters Notes Store', () => {
notesData: notesDataMock,
userData: userDataMock,
noteableData: noteableDataMock,
descriptionVersion: 'descriptionVersion',
descriptionVersions: 'descriptionVersions',
};
});
......@@ -387,9 +387,9 @@ describe('Getters Notes Store', () => {
});
});
describe('descriptionVersion', () => {
it('should return `descriptionVersion`', () => {
expect(getters.descriptionVersion(state)).toEqual('descriptionVersion');
describe('descriptionVersions', () => {
it('should return `descriptionVersions`', () => {
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