File tree 4 files changed +3
-4
lines changed
4 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ function progressLoad() {
6
6
var tutorial = getState ( ) . tutorial ;
7
7
dispatch ( { type : types_1 . PROGRESS_LOAD , payload : { tutorial : tutorial } } ) ;
8
8
dispatch ( _progressPagePosition ( ) ) ;
9
- dispatch ( actions_1 . testRun ( ) ) ;
10
9
} ;
11
10
}
12
11
exports . progressLoad = progressLoad ;
Original file line number Diff line number Diff line change @@ -4,6 +4,6 @@ var core_coderoad_1 = require('core-coderoad');
4
4
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
5
5
exports . default = core_coderoad_1 . configureStore ( {
6
6
reducer : reducers_1 . default ,
7
- devMode : true ,
7
+ devMode : false ,
8
8
throttle : { TEST_RUN : 800 } ,
9
9
} ) ;
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export function progressLoad(): ReduxThunk.ThunkInterface {
8
8
const { tutorial} = getState ( ) ;
9
9
dispatch ( { type : PROGRESS_LOAD , payload : { tutorial } } ) ;
10
10
dispatch ( _progressPagePosition ( ) ) ;
11
- dispatch ( testRun ( ) ) ;
11
+ // dispatch(testRun());
12
12
} ;
13
13
}
14
14
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ import {configureStore} from 'core-coderoad';
3
3
4
4
export default configureStore ( {
5
5
reducer,
6
- devMode : true ,
6
+ devMode : false ,
7
7
throttle : { TEST_RUN : 800 } ,
8
8
} ) ;
You can’t perform that action at this time.
0 commit comments