mirror of
https://github.com/LukeHagar/unicorn-utterances.git
synced 2025-12-10 04:22:06 +00:00
13 lines
236 B
JavaScript
13 lines
236 B
JavaScript
import React from "react"
|
|
|
|
jest.mock('gatsby-image', () => {
|
|
return (props) => {
|
|
return <img
|
|
src={props.fixed}
|
|
alt={props.alt}
|
|
data-testid={props['data-testid']}
|
|
className={props.className}
|
|
/>;
|
|
}
|
|
});
|