Apply capitalization guidelines - iteration 8 (#12343) (#12454)

This commit is contained in:
Michael S. Molina
2021-01-22 02:46:18 -03:00
committed by GitHub
parent d9388d4535
commit 217034e990
22 changed files with 92 additions and 92 deletions

View File

@@ -80,12 +80,12 @@ describe('AnnotationModal', () => {
const addWrapper = await mountAndWait({});
expect(
addWrapper.find('[data-test="annotaion-modal-title"]').text(),
).toEqual('Add Annotation');
).toEqual('Add annotation');
});
it('renders edit header when annotation prop is included', () => {
expect(wrapper.find('[data-test="annotaion-modal-title"]').text()).toEqual(
'Edit Annotation',
'Edit annotation',
);
});

View File

@@ -73,13 +73,13 @@ describe('AnnotationLayerModal', () => {
const addWrapper = await mountAndWait({});
expect(
addWrapper.find('[data-test="annotation-layer-modal-title"]').text(),
).toEqual('Add Annotation Layer');
).toEqual('Add annotation layer');
});
it('renders edit header when layer prop is included', () => {
expect(
wrapper.find('[data-test="annotation-layer-modal-title"]').text(),
).toEqual('Edit Annotation Layer Properties');
).toEqual('Edit annotation layer properties');
});
it('renders input element for name', () => {

View File

@@ -74,13 +74,13 @@ describe('CssTemplateModal', () => {
const addWrapper = await mountAndWait({});
expect(
addWrapper.find('[data-test="css-template-modal-title"]').text(),
).toEqual('Add CSS Template');
).toEqual('Add CSS template');
});
it('renders edit header when css template prop is included', () => {
expect(
wrapper.find('[data-test="css-template-modal-title"]').text(),
).toEqual('Edit CSS Template Properties');
).toEqual('Edit CSS template properties');
});
it('renders input elements for template name', () => {