Testing Library has changed the UI testing game for the better. If you haven't tried it yet, check it out.
At work our new UI efforts are powered by Chakra UI, which uses Framer Motion under the hood for animations. With all this work, we're testing all of it using Jest and React Testing Library (RTL).
One great way to defend against UI regressions (copy, styles, etc) is snapshot testing. As we're getting more and more into Chakra's features and better tests, we've run into issues where the animated style
properties have minute differences between snapshots.
RTL recommends mocking animation libraries to solve this problem. There are a few solutions for doing this with framer-motion
on the web, but I don't think they are up to snuff for the current version of the library (4._
).
After digging around the framer motion source, I realized our attempt at mocking the motion
export as an object (see here) wasn't working because motion
is constructed using Proxy.
Enough with the words, how do I stabilize my snapshot tests?!
// __mocks__/framer-motion.ts
import { CustomDomComponent, CustomMotionComponentConfig } from 'framer-motion/types/render/dom/motion-proxy';
import * as React from 'react';
const actual = jest.requireActual('framer-motion');
// https://github.com/framer/motion/blob/main/src/render/dom/motion.ts
function custom<Props>(
Component: string | React.ComponentType<Props>,
_customMotionComponentConfig: CustomMotionComponentConfig = {},
): CustomDomComponent<Props> {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
return React.forwardRef((props, ref) => {
const regularProps = Object.fromEntries(
// do not pass framer props to DOM element
Object.entries(props).filter(([key]) => !actual.isValidMotionProp(key)),
);
return typeof Component === 'string' ? (
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
<div ref={ref} {...regularProps} />
) : (
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
<Component ref={ref} {...regularProps} />
);
});
}
const componentCache = new Map<string, unknown>();
const motion = new Proxy(custom, {
get: (_target, key: string) => {
if (!componentCache.has(key)) {
componentCache.set(key, custom(key));
}
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
return componentCache.get(key)!;
},
});
module.exports = {
__esModule: true,
...actual,
AnimatePresence: ({ children }: { children: React.ReactChildren }) => <>{children}</>,
motion,
};
Now in your test setup file you can call jest.mock('framer-motion')
and all the animation related properties will be filtered out.
Happy testing!
Top comments (10)
"CustomMotionComponentConfig" is not exported anymore in version 6.3.13
Hey @tmikeschu, thanks for sharing this mock.
I noticed an issue with this logic:
By returning a
<div>
for allstring
component types, it means that all motion elements (e.g.motion.div
,motion.li
,motion.ul
, etc.) will incorrectly render as a<div>
.Instead, I believe this is all that is needed:
@jasongerbes thanks for taking a look! Do the motion elements really resolve to a string? I wouldn't expect
motion.div
to be a string component. I specifically don't want to render motion elements as motion elements because of their animation properties. Let me know if I'm misunderstanding. Thanks!The
motion
function fromframer-motion
has two use cases:motion.div
,motion.ul
,motion.li
, etc).const MotionComponent = motion(Component)
).You'll notice that the type of
motion
includes& HTMLMotionComponents & SVGMotionComponents
, which means thatmotion
can either be used as a function (for wrapping custom components), or as an object where the properties are all of the HTML and SVG element tags (e.g.motion.h6
).I expect Framer Motion uses the
Proxy
for standard HTML and SVG elements as an optimisation, so that the wrapped elements are only created when necessary (e.g. you may not needmotion.h6
in your application).Ultimately though, the expected rendered output of HTML and SVG motion elements should be:
<motion.div>
-><div>
<motion.ul>
-><ul>
<motion.li>
-><li>
<motion.h6>
-><h6>
If you try snapshotting a few non-
<div>
elements with your currentcustom
function, you'll notice that they all render as<div>
. This is due to thetypeof Component === 'string'
check, which returns<div>
for all HTML and SVG elementstring
values.Here's my full solution, which includes a
as typeof custom & DOMMotionComponents
cast on themotion
proxy, as per the actual motion proxy:I tried the above solution and overwriting AnimatePresence results in this error:
Error: Uncaught [TypeError: Cannot read property 'jsxDEV' of undefined]
I did some digging around and it looks like jsxDEV is from React. Any suggestions on how to resolve this?
Weird! Sorry nothing off the top of my head. I'll post here if I find anything.
Thanks for this article and thanks Jason as well for the clarification! Indeed my tests started failing because motion elements were being mocked as divs.
This is working for me with Framer Motion 5.6. Maybe one day I'll be as smart as you guys and be able to come up with a mock like this. Will have to copy-paste this for now. π
Somehow removing even a single eslint or ts-ignore comment breaks my tests, but leaving it as is, works. What's going on?
That is indeed strange. Which comment do you removes that produces this error?
Ah, sorry about having commented and basically causing a bit of spam.
Turns out I was facing that issue due to something completely unrelated. No idea why removing comments was causing the issue, but, it is what it is.
Removing any ts-ignore or eslint comment caused the issue.
My fix was to use "module": "commonjs" instead of "esnext" in my tsconfig.test.json.