Skip to content

Commit 3c310f0

Browse files
committed
Tests for global navigation feature
1 parent 3709c5e commit 3c310f0

File tree

3 files changed

+33
-7
lines changed

3 files changed

+33
-7
lines changed

src/App.tsx

+7-3
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@ import Step2 from "./stepComponents/Step2";
55
import Step3 from "./stepComponents/Step3";
66
import Step4 from "./stepComponents/Step4";
77

8-
const Navigation = (props: NavigationComponentProps) => {
8+
export const Navigation = (props: NavigationComponentProps) => {
99
console.log(props);
1010
return (
1111
<div>
12-
<button onClick={props.prev}>Previous</button>
13-
<button onClick={props.next}>Next</button>
12+
<button data-testid="global-prev" onClick={props.prev}>
13+
Global Previous
14+
</button>
15+
<button data-testid="global-next" onClick={props.next}>
16+
Global Next
17+
</button>
1418
</div>
1519
);
1620
};

src/lib-ts/index.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ const StepsContext = React.createContext<StepsContext>({
118118
state: {},
119119
handleChange: (event) => {},
120120
setState: (key, value) => {},
121-
getState: (key, defaultValue) => "" || false || defaultValue,
121+
getState: (key, defaultValue) => "",
122122
next: () => {},
123123
prev: () => {},
124124
jump: (id) => {},
@@ -136,8 +136,6 @@ export function Steps({ children, config }: StepsProps) {
136136
if (config?.navigation?.component) {
137137
const NavComponent = config?.navigation?.component;
138138
return <NavComponent {...context} />;
139-
} else {
140-
return null;
141139
}
142140
};
143141

src/tests/index.test.js

+25-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ const Step1 = () => <></>;
99
const Step2 = () => <></>;
1010
const Step3 = () => <></>;
1111
const Step4 = () => <></>;
12+
const Navigation = () => <></>;
1213

1314
const testRenderer = TestRenderer.create(
14-
<Steps>
15+
<Steps config={{ navigation: { component: Navigation, location: "before" } }}>
1516
<Step component={Step1} title="My first step" beforeStepChange={mockFn} />
1617
<Step component={Step2} />
1718
<Step component={Step3} />
@@ -176,3 +177,26 @@ describe("state updates correctly", () => {
176177
expect(newProps1.getState("lastname", "")).toBe("Mutevelli");
177178
});
178179
});
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

Comments
 (0)