Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kamranayub/example-storyflow
Created with CodeSandbox
https://github.com/kamranayub/example-storyflow
Last synced: 29 days ago
JSON representation
Created with CodeSandbox
- Host: GitHub
- URL: https://github.com/kamranayub/example-storyflow
- Owner: kamranayub
- Created: 2020-05-02T19:40:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T16:08:30.000Z (almost 2 years ago)
- Last Synced: 2024-04-13T16:07:06.004Z (7 months ago)
- Language: JavaScript
- Homepage: https://codesandbox.io/s/github/kamranayub/example-storyflow
- Size: 1.63 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Storyflow Example
Companion demo to my talk, [Using Storybook to Build a Better... Game Engine?](https://bit.ly/StorybookForGameEnginesMDC2020)
Showcases using Storybook as the basis for unit and functional tests aka "Storyflow" workflow. Uses Storybook, Jest, and Cypress.
## Getting Started
**Prerequisites**
- [Yarn](https://yarnpkg.com) 1.x (or replace `yarn` with `npm`)
- [Node](https://nodejs.org) 12.x```sh
# Install dependencies
yarn# Start Storybook
yarn start# Run Jest tests
yarn test# Run Cypress test runner
yarn cypress open# Run Cypress tests headless
yarn cypress run
```