Use node-logger in addon-storyshots

This commit is contained in:
Hypnosphi 2018-02-17 19:45:07 +03:00
parent 4a342a3e5b
commit 4da4f671de
4 changed files with 9 additions and 5 deletions

View File

@ -17,6 +17,7 @@
},
"dependencies": {
"@storybook/channels": "^3.4.0-alpha.8",
"@storybook/node-logger": "^3.4.0-alpha.8",
"babel-runtime": "^6.26.0",
"glob": "^7.1.2",
"global": "^4.3.2",

View File

@ -1,5 +1,6 @@
import puppeteer from 'puppeteer';
import { toMatchImageSnapshot } from 'jest-image-snapshot';
import { logger } from '@storybook/node-logger';
expect.extend({ toMatchImageSnapshot });
@ -13,7 +14,7 @@ export const imageSnapshot = ({
const testFn = ({ context }) => {
if (context.framework === 'rn') {
// Skip tests since we de not support RN image snapshots.
console.error(
logger.error(
"It seems you are running imageSnapshot on RN app and it's not supported. Skipping test."
);
return Promise.resolve();
@ -24,7 +25,7 @@ export const imageSnapshot = ({
const storyUrl = `/iframe.html?selectedKind=${encodedKind}&selectedStory=${encodedStoryName}`;
const url = storybookUrl + storyUrl;
if (!browser || !page) {
console.error(
logger.error(
`Error when generating image snapshot for test ${context.kind} - ${
context.story
} : It seems the headless browser is not running.`
@ -36,7 +37,7 @@ export const imageSnapshot = ({
return page
.goto(url)
.catch(e => {
console.error(
logger.error(
`ERROR WHILE CONNECTING TO ${url}, did you start or build the storybook first ? A storybook instance should be running or a static version should be built when using image snapshot feature.`,
e
);

View File

@ -4,7 +4,8 @@
* */
import path from 'path';
import fs from 'fs';
import initStoryshots, { imageSnapshot } from '../../../addons/storyshots/src/index';
import initStoryshots, { imageSnapshot } from '@storybook/addon-storyshots';
import { logger } from '@storybook/node-logger';
// Image snapshots
// We do screenshots against the static build of the storybook.
@ -12,7 +13,7 @@ import initStoryshots, { imageSnapshot } from '../../../addons/storyshots/src/in
const pathToStorybookStatic = path.join(__dirname, '../', 'storybook-static');
if (!fs.existsSync(pathToStorybookStatic)) {
console.error(
logger.error(
'You are running image snapshots without having the static build of storybook. Please run "yarn run build-storybook" before running tests.'
);
} else {

View File

@ -25,6 +25,7 @@
"@storybook/addon-viewport": "^3.4.0-alpha.8",
"@storybook/addons": "^3.4.0-alpha.8",
"@storybook/components": "^3.4.0-alpha.8",
"@storybook/node-logger": "^3.4.0-alpha.8",
"@storybook/react": "^3.4.0-alpha.8",
"babel-jest": "^22.1.0",
"enzyme": "^3.3.0",