File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 55import React from 'react' ;
66import { Route , Routes } from 'react-router-dom' ;
77import { Factory } from 'rosie' ;
8- import { getConfig , history } from '@edx/frontend-platform' ;
8+ import { getConfig , history , mergeConfig } from '@edx/frontend-platform' ;
99import { getAuthenticatedHttpClient } from '@edx/frontend-platform/auth' ;
1010import { AppProvider } from '@edx/frontend-platform/react' ;
1111import MockAdapter from 'axios-mock-adapter' ;
@@ -287,6 +287,9 @@ describe('Courseware Tour', () => {
287287 it . each ( [ true , false ] ) (
288288 'should load courseware checkpoint correctly if tour enabled is $showCoursewareTour' ,
289289 async ( showCoursewareTour ) => {
290+ mergeConfig ( {
291+ ENABLE_SEQUENCE_NAVIGATION : true ,
292+ } , 'Add configs for sequence navigation' ) ;
290293 axiosMock . onGet ( tourDataUrl ) . reply ( 200 , {
291294 course_home_tour_status : 'no-tour' ,
292295 show_courseware_tour : showCoursewareTour ,
You can’t perform that action at this time.
0 commit comments