Commit 8f3db662 authored by Alexey Beloglazov's avatar Alexey Beloglazov Committed by Ev Maslovskiy
Browse files

Issue #3314849: Cover NEW courses pages with tests

parent a46da155
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- #3312217: Cover creation of lessons with tests.
- #3313461: Cover quizzes with tests.
- #3313777: Cover questions in lessons with tests.
- #3314849: Cover NEW courses pages with tests.

## [2.9.0]
- #3312107: Highlighting should be applied for whole words.
+1 −1

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ const CoursesGrid = ({ courses }) => {
  const classes = useStyles();

  return (
    <Box className={classes.gridWrapper}>
    <Box className={classes.gridWrapper} data-test={'anu-lms-courses-list'}>
      <Box className={classes.gridContainer}>
        {courses.map((course) => (
          <Box key={course.id} className={classes.gridItem}>
+1 −1
Original line number Diff line number Diff line
@@ -173,7 +173,7 @@ const CoursesPageTemplate = ({
        {/* Courses Grid */}
        <Box className={classes.content}>
          <Box className={classes.contentHeader}>
            <Typography variant="caption">
            <Typography variant="caption" data-test={'anu-lms-amount-courses'}>
              {Drupal.formatPlural(
                courses.length,
                '@count Course',
Loading