Pretty easy visual testing with magic
npm install -D creevey
- Add
withCreevey
as top-level storybook decorator - Run tests
yarn creevey --gridUrl "<gridUrl>/wd/hub"
// .storybook/preview.js or .storybook/config.js
import { addDecorator } from '@storybook/react';
import { withCreevey } from 'creevey';
addDecorator(withCreevey({ captureElement: '#root' }));
/* ... */
import path from 'path';
import { CreeveyConfig } from 'creevey';
const config: CreeveyConfig = {
gridUrl: '<gridUrl>/wd/hub',
storybookUrl: 'http://localhost:6006',
storybookDir: path.join(__dirname, '.storybook'),
enableFastStoriesLoading: false, // See notes below
screenDir: path.join(__dirname, 'images'),
reportDir: path.join(__dirname, 'report'),
diffOptions: { threshold: 0.1 },
maxRetries: 2,
browsers: {
chrome: true,
ff: 'firefox',
ie11: {
browserName: 'internet explorer',
gridUrl: '<anotherGridUrl>/wd/hub',
limit: 2,
/* capabilities */
},
otherChrome: {
browserName: 'chrome',
storybookUrl: 'http://mystoryhost:6007',
viewport: { width: 1024, height: 720 },
},
},
};
export default config;
NOTE: By default Creevey load stories with all dependency modules recursively. But for running tests mostly of them is not needed, Creevey uses only stories meta data, like story name/kind and parameters. Load all modules may significantly increase initialization time, so you can speed it up by using enableFastStoriesLoading
flag. But bear in mind, your stories should have no side-effects. This flag skip to load all modules except stories/config and some modules from node_modules.
--config
— Specify path to config file. Default./creevey.config
--reporter
— Use another reporter for mocha instead of defaultspec
--gridUrl
— Specify selenium grid url, work only in zero-config--ui
— Start web server--update
— Approve all images fromreport
directory--port
— Specify port for web server. Default3000
--reportDir
— Path where reports will be stored--screenDir
— Path where reference images are located
You can specify storybook parameters for withCreevey
decorator:
// Global parameters can be defined in storybook config
addDecorator(
withCreevey({
captureElement: '#root',
tests: {
/* see examples below */
},
skip: {
/* see examples below */
},
}),
);
// For new `Component Story Format` (CSF) https://storybook.js.org/docs/formats/component-story-format/
// Kind-level parameters work for all stories inside
export default {
title: 'Views',
parameters: {
creevey: {
/* ... */
},
},
};
// Story-level parameters work only for that story
export const simple = () => <MyComponent />;
simple.story = {
parameters: {
creevey: {
/* ... */
},
},
};
// For Old `StoriesOf` API (Storybook version < 5.2)
storiesOf('Views', module)
.addParameters({
creevey: {
/* ... */
},
}) // Kind-level
.add('simple', () => <MyComponent />, {
creevey: {
/* ... */
},
}); // Story-level
NOTE: Parameters for story will be deep-merged with parameters from higher levels.
tests
option is a plain object where key used as test name and value is a test function.
Under the hood of creevey
is used mocha+chai
and for chai
additionally defined matchImage
assertion.
import React from 'react';
import { CSFStory } from 'creevey';
export default { title: 'MyComponent' };
export const Simple: CSFStory<JSX.Element> = () => <MyComponent />;
Simple.story = {
parameters: {
creevey: {
captureElement: '#root',
tests: {
async click() {
await this.browser
.actions({ bridge: true })
.click(this.captureElement)
.perform();
await this.expect(await this.takeScreenshot()).to.matchImage('clicked component');
},
},
},
},
};
- Skip all stories for all browsers:
skip: 'Skip reason message'
skip: { reason: 'Skip reason message' }
- Skip all stories for specific browsers:
skip: { in: 'ie11' }
skip: { in: ['ie11', 'chrome'] }
skip: { in: /^fire.*/ }
- Skip all stories in specific kinds:
skip: { kinds: 'Button' }
skip: { kinds: ['Button', 'Input'] }
skip: { kinds: /.*Modal$/ }
- Skip all tests in specific stories:
skip: { stories: 'simple' }
skip: { stories: ['simple', 'special'] }
skip: { stories: /.*large$/ }
- Skip specific tests:
skip: { tests: 'click' }
skip: { tests: ['hover', 'click'] }
skip: { tests: /^press.*$/ }
- Multiple skip options:
skip: [{ /* ... */ }]
NOTE: If you try to skip stories by story name, the storybook name format will be used (For more info see storybook-export-vs-name-handling)
CRA don't have @babel/register
nor ts-node
in deps, that used to load TypeScript modules in runtime. So you need to install one of those packages explicitly
I try to figure out what transpiler I should register to load storybook config and stories in your project, but I can't cover all cases. So, if you stuck with this issue, please specify correct require hooks and options on top of creevey config.