View Play.txt
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)); | |
}, |
View React SVG Component.tsx
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" | |
/> |
View .dockerignore.txt
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/ |
View Should play the story interaction.ts
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); | |
}); |
View context-based-compound-component.js
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}) { |
View React TS Story.ts
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", | |
}, |
View mws setupServer.ts
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()); |
View mock react-modal.ts
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); |
View Should be accessible and match snapshot.ts
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