File tree 4 files changed +64
-64
lines changed
4 files changed +64
-64
lines changed Original file line number Diff line number Diff line change 2
2
3
3
exports [` challenge.fetchChallengeInit 1` ] = `
4
4
Object {
5
- " payload" : " 12345 " ,
5
+ " payload" : " 123456789 " ,
6
6
" type" : " CHALLENGE/GET_DETAILS_INIT" ,
7
7
}
8
8
` ;
@@ -16,7 +16,7 @@ Object {
16
16
17
17
exports [` challenge.fetchSubmissionsInit 1` ] = `
18
18
Object {
19
- " payload" : " 12345 " ,
19
+ " payload" : " 123456789 " ,
20
20
" type" : " CHALLENGE/GET_SUBMISSIONS_INIT" ,
21
21
}
22
22
` ;
Original file line number Diff line number Diff line change @@ -3,20 +3,20 @@ import { actions } from '../../src';
3
3
jest . mock ( '../../src/services/challenges' ) ;
4
4
5
5
test ( 'challenge.fetchChallengeInit' , ( ) => {
6
- expect ( actions . challenge . getDetailsInit ( 12345 ) ) . toMatchSnapshot ( ) ;
6
+ expect ( actions . challenge . getDetailsInit ( 123456789 ) ) . toMatchSnapshot ( ) ;
7
7
} ) ;
8
8
9
9
test ( 'challenge.fetchSubmissionsInit' , ( ) => {
10
- expect ( actions . challenge . getSubmissionsInit ( 12345 ) ) . toMatchSnapshot ( ) ;
10
+ expect ( actions . challenge . getSubmissionsInit ( 123456789 ) ) . toMatchSnapshot ( ) ;
11
11
} ) ;
12
12
13
13
14
14
test ( 'challenge.getDetailsDone' , ( ) => {
15
- expect ( actions . challenge . getDetailsDone ( 12345 ) ) . toMatchSnapshot ( ) ;
15
+ expect ( actions . challenge . getDetailsDone ( 123456789 ) ) . toMatchSnapshot ( ) ;
16
16
} ) ;
17
17
18
18
test ( 'challenge.fetchSubmissionsDone' , ( ) => {
19
- expect ( actions . challenge . getSubmissionsDone ( 12345 , { } ) ) . toMatchSnapshot ( ) ;
19
+ expect ( actions . challenge . getSubmissionsDone ( 123456789 , { } ) ) . toMatchSnapshot ( ) ;
20
20
} ) ;
21
21
22
22
test ( 'challenge.getActiveChallengesCountInit' , ( ) => {
You can’t perform that action at this time.
0 commit comments