creevey
Pretty easy visual testing with magic
How to use
npm install -D creevey
- Add
withCreevey
as top-level storybook decorator - Run tests
yarn creevey --gridUrl "<gridUrl>/wd/hub"
What's storybook decorator?
Using Decorators
import { addDecorator } from '@storybook/react';
import { withCreevey } from 'creevey';
addDecorator(withCreevey({ captureElement: '#root' }));
Also you can define creevey.config.ts
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,
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,
},
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.
Creevey CLI options
--config
— Specify path to config file. Default ./creevey.config
--reporter
— Use another reporter for mocha instead of default spec
--gridUrl
— Specify selenium grid url, work only in zero-config--ui
— Start web server--update
— Approve all images from report
directory--port
— Specify port for web server. Default 3000
--reportDir
— Path where reports will be stored--screenDir
— Path where reference images are located
withCreevey
decorator parameters
You can specify storybook parameters for withCreevey
decorator:
addDecorator(
withCreevey({
captureElement: '#root',
tests: {
},
skip: {
},
}),
);
export default {
title: 'Views',
parameters: {
creevey: {
},
},
};
export const simple = () => <MyComponent />;
simple.story = {
parameters: {
creevey: {
},
},
};
storiesOf('Views', module)
.addParameters({
creevey: {
},
})
.add('simple', () => <MyComponent />, {
creevey: {
},
});
NOTE: Parameters for story will be deep-merged with parameters from higher levels.
tests
option examples:
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 { expect } from 'chai';
import { WebDriver } from 'selenium-webdriver';
export default { title: 'MyComponent' };
export const Simple = () => <MyComponent />;
Simple.story = {
parameters: {
creevey: {
tests: {
async click(this: { browser: WebDriver }) {
const element = await this.browser.findElement({ css: '#root' });
await this.browser
.actions({ bridge: true })
.click(element)
.perform();
await expect(await element.takeScreenshot()).to.matchImage('clicked component');
},
},
},
},
};
skip
option examples:
- 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)
FAQ
Get error Cannot find module '/path/to/project/creevey.config'
with CRA
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
Get SyntaxError: ...
while loading storybook config
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.