@@ -9,9 +9,10 @@ const Step1 = () => <></>;
9
9
const Step2 = ( ) => < > </ > ;
10
10
const Step3 = ( ) => < > </ > ;
11
11
const Step4 = ( ) => < > </ > ;
12
+ const Navigation = ( ) => < > </ > ;
12
13
13
14
const testRenderer = TestRenderer . create (
14
- < Steps >
15
+ < Steps config = { { navigation : { component : Navigation , location : "before" } } } >
15
16
< Step component = { Step1 } title = "My first step" beforeStepChange = { mockFn } />
16
17
< Step component = { Step2 } />
17
18
< Step component = { Step3 } />
@@ -176,3 +177,26 @@ describe("state updates correctly", () => {
176
177
expect ( newProps1 . getState ( "lastname" , "" ) ) . toBe ( "Mutevelli" ) ;
177
178
} ) ;
178
179
} ) ;
180
+
181
+ describe ( "global navigation" , ( ) => {
182
+ it ( "takes parameters correctly" , ( ) => {
183
+ const navProps = testInstance . findByType ( Navigation ) . props ;
184
+ expect ( navProps . size ) . toBe ( 4 ) ;
185
+ expect ( navProps . current ) . toBe ( 1 ) ;
186
+ expect ( navProps . progress ) . toBe ( 0 ) ;
187
+ } ) ;
188
+
189
+ it ( "buttons work correctly" , ( ) => {
190
+ const navProps = testInstance . findByType ( Navigation ) . props ;
191
+
192
+ act ( ( ) => navProps . next ( ) ) ;
193
+
194
+ const newNavProps = testInstance . findByType ( Navigation ) . props ;
195
+
196
+ expect ( newNavProps . current ) . toBe ( 2 ) ;
197
+ expect ( newNavProps . size ) . toBe ( 4 ) ;
198
+ expect ( newNavProps . progress ) . toBe (
199
+ ( newNavProps . current - 1 ) / ( newNavProps . size - 1 ) ,
200
+ ) ;
201
+ } ) ;
202
+ } ) ;
0 commit comments