fix: use sentence casing (#1640)
* fix: use sentence casing * fix: failing tests
This commit is contained in:
@@ -64,7 +64,7 @@ describe('<CourseOutlineTray />', () => {
|
||||
|
||||
expect(screen.getByText(messages.loading.defaultMessage)).toBeInTheDocument();
|
||||
expect(screen.getByText(messages.courseOutlineTitle.defaultMessage)).toBeInTheDocument();
|
||||
expect(screen.queryByRole('button', { name: 'Course Outline' })).not.toBeInTheDocument();
|
||||
expect(screen.queryByRole('button', { name: 'Course outline' })).not.toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('doesn\'t render when outline sidebar is disabled', async () => {
|
||||
|
||||
@@ -13,7 +13,7 @@ const messages = defineMessages({
|
||||
},
|
||||
courseOutlineTitle: {
|
||||
id: 'courseOutline.tray.title',
|
||||
defaultMessage: 'Course Outline',
|
||||
defaultMessage: 'Course outline',
|
||||
description: 'Title text displayed for the course outline tray',
|
||||
},
|
||||
completedUnit: {
|
||||
|
||||
Reference in New Issue
Block a user