Commit 2b50b64c authored by Alexey Beloglazov's avatar Alexey Beloglazov Committed by Ev Maslovskiy
Browse files

Issue #3306842: Cover creation of courses with tests

parent 3c53e1fe
Loading
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed bottom spacing for quiz page and mobile layout.
- Adjusted "Make available offline" button text when processed.
- Fixed the problem "Unable to install Anu LMS Permissions due to unmet dependencies". That was happening in a case when "Anu LMS Assessments" module was disabled when a user tried to enable "Anu LMS Permissions" module.
- Renamed "CoursesTest" to "DemoContentTest"
- Added CoursesCreationTest
- Fixed a bug broken html output for lessons when highlighting was requested.
- #3308215: Make bigger area for Play audio button.

+1 −1

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1

File changed.

Preview size limit exceeded, changes collapsed.

+5 −1
Original line number Diff line number Diff line
@@ -163,7 +163,11 @@ const ContentNavigation = ({
              {noNextLesson &&
                nextIsQuiz &&
                renderButtonWithTooltip(
                  <Button {...buttonProps} onClick={updateProgressAndRedirect}>
                  <Button
                    {...buttonProps}
                    onClick={updateProgressAndRedirect}
                    data-test="anu-lms-navigation-next"
                  >
                    {renderButtonLabel(Drupal.t('Next', {}, { context: 'ANU LMS' }))}
                  </Button>
                )}
+1 −0
Original line number Diff line number Diff line
@@ -38,6 +38,7 @@ const QuizSubmit = ({ onSubmit, isSubmitting, isQuiz, prevLesson }) => {
              onClick={onSubmit}
              disabled={!online || isSubmitting}
              style={{ marginTop: theme.spacing(2) }}
              data-test={'anu-lms-quiz-submit'}
            >
              {isSubmitting && (
                <CircularProgress size={20} style={{ marginRight: theme.spacing(2) }} />
Loading