Skip to content

Commit 44f3e79

Browse files
committed
test(motion): update unit test for createPresenceComponentVariant
1 parent 9b2b989 commit 44f3e79

File tree

1 file changed

+27
-18
lines changed

1 file changed

+27
-18
lines changed

packages/react-components/react-motion/library/src/factories/createPresenceComponentVariant.test.tsx

+27-18
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jest.mock('./createPresenceComponent', () => {
1414
};
1515
});
1616

17-
// TODO: replace `direction` param with something more concrete, less confusing
18-
const PRESENCE_MOTION: PresenceMotionFn<{ duration?: number; easing?: string }> = ({
17+
const PRESENCE_MOTION: PresenceMotionFn<{ outOpacity?: number; duration?: number; easing?: string }> = ({
18+
outOpacity = 0,
1919
duration = 1000,
2020
easing = 'linear',
2121
}) => ({
22-
enter: { keyframes: [], duration, easing },
23-
exit: { keyframes: [], duration, easing },
22+
enter: [{ keyframes: [{ opacity: outOpacity }, { opacity: 1 }], duration, easing }],
23+
exit: [{ keyframes: [{ opacity: 1 }, { opacity: outOpacity }], duration, easing }],
2424
});
2525
const PRESENCE_COMPONENT = createPresenceComponent(PRESENCE_MOTION);
2626

@@ -29,11 +29,16 @@ const MOTION_PARAMS = {
2929
};
3030

3131
describe('createPresenceComponentVariant', () => {
32-
// TODO: update for new implementation of createPresenceComponentVariant
33-
it('appends override to the original motion', () => {
32+
it('overrides motion parameters used within motion atom arrays', () => {
33+
// variant params overriding the default motion params
34+
const outOpacity = 0.3;
35+
const duration = 500;
36+
const easing = 'ease-in-out';
37+
3438
const PresenceVariant = createPresenceComponentVariant(PRESENCE_COMPONENT, {
35-
duration: 500,
36-
easing: 'ease-in-out',
39+
outOpacity,
40+
duration,
41+
easing,
3742
});
3843
const overrideFn = (createPresenceComponent as jest.Mock).mock.calls[0][0];
3944

@@ -51,16 +56,20 @@ describe('createPresenceComponentVariant', () => {
5156

5257
expect(overrideFn).toBeInstanceOf(Function);
5358
expect(overrideFn(MOTION_PARAMS)).toEqual({
54-
enter: {
55-
duration: 500,
56-
easing: 'ease-in-out',
57-
keyframes: [],
58-
},
59-
exit: {
60-
duration: 500,
61-
easing: 'ease-in-out',
62-
keyframes: [],
63-
},
59+
enter: [
60+
{
61+
duration,
62+
easing,
63+
keyframes: [{ opacity: outOpacity }, { opacity: 1 }],
64+
},
65+
],
66+
exit: [
67+
{
68+
duration,
69+
easing,
70+
keyframes: [{ opacity: 1 }, { opacity: outOpacity }],
71+
},
72+
],
6473
});
6574
});
6675
});

0 commit comments

Comments
 (0)