This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
play: async ({ canvasElement, args }) => { | |
const canvas = within(canvasElement); | |
const user = userEvent.setup({ delay: 50 }); | |
await user.click(canvas.getByText("Click me")); | |
await waitFor(() => expect(args.onClick).toHaveBeenCalledTimes(1)); | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { FunctionComponent } from "react"; | |
const Menu: FunctionComponent<React.SVGProps<SVGSVGElement>> = (props) => ( | |
<svg stroke="currentColor" fill="none" viewBox="0 0 24 24" {...props}> | |
<path | |
strokeLinecap="round" | |
strokeLinejoin="round" | |
strokeWidth="2" | |
d="M4 6h16M4 12h16M4 18h16" | |
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Global docker ignore | |
**/.dockerignore | |
docker-compose.yml | |
Dockerfile* | |
*.dockerfile | |
.git/ | |
# Nodejs app ignore | |
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test("should play the story interaction", async () => { | |
const onClick = jest.fn(); | |
const { container } = render(<Default onClick={onClick} />); | |
await Default.play({ canvasElement: container }); | |
expect(onClick).toHaveBeenCalledTimes(1); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Flexible Compound Components - epicreact.dev | |
import * as React from 'react' | |
import {Switch} from '../switch' | |
// 📜 https://reactjs.org/docs/context.html#reactcreatecontext | |
const ToggleContext = React.createContext() | |
ToggleContext.displayName = 'ToggleContext' | |
function Toggle({children}) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { ComponentMeta } from "@storybook/react"; | |
import COMPONENT_NAME from "."; | |
import { userEvent, within } from "@storybook/testing-library"; | |
export default { | |
component: COMPONENT_NAME, | |
decorators: [(story) => <div>{story()}</div>], | |
parameters: { | |
layout: "centered", | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const server = setupServer( | |
rest.get("/jobs", (req, res, ctx) => res(ctx.json(fixtures.jobs))), | |
); | |
beforeAll(() => server.listen({ onUnhandledRequest: "error" })); | |
afterAll(() => server.close()); | |
afterEach(() => server.resetHandlers()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jest.mock("react-modal", () => ({ children }: any) => children); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test("should be accessible and match snapshot", async () => { | |
const { container } = render(<Default {...props} />); | |
expect(await axe(container)).toHaveNoViolations(); | |
expect(container.firstChild).toMatchSnapshot(); | |
}); |
NewerOlder