CLEANUP && FIX unit test

This commit is contained in:
Norbert de Langen 2017-09-12 23:02:52 +02:00
parent 8727989141
commit 6695d953a6
11 changed files with 65 additions and 85 deletions

View File

@ -1,5 +1,4 @@
/* global document */ import { document } from 'global';
import renderStorybookUI from '@storybook/ui'; import renderStorybookUI from '@storybook/ui';
import Provider from './provider'; import Provider from './provider';

View File

@ -1,5 +1,4 @@
/* global location */ import { location } from 'global';
import qs from 'qs'; import qs from 'qs';
import React from 'react'; import React from 'react';
import { Provider } from '@storybook/ui'; import { Provider } from '@storybook/ui';

View File

@ -1,5 +1,4 @@
/* eslint no-underscore-dangle: 0 */ /* eslint-disable no-underscore-dangle */
// import Vue from 'vue';
export default class ClientApi { export default class ClientApi {
constructor({ channel, storyStore }) { constructor({ channel, storyStore }) {

View File

@ -1,4 +1,4 @@
/* eslint no-underscore-dangle: 0 */ /* eslint-disable no-underscore-dangle */
import ClientAPI from './client_api'; import ClientAPI from './client_api';
@ -75,7 +75,10 @@ describe('preview.client_api', () => {
}, },
}); });
api.storiesOf('none').aa().bb(); api
.storiesOf('none')
.aa()
.bb();
expect(data).toEqual(['foo', 'bar']); expect(data).toEqual(['foo', 'bar']);
}); });

View File

@ -1,4 +1,4 @@
/* eslint no-underscore-dangle: 0 */ /* eslint-disable no-underscore-dangle */
import { location } from 'global'; import { location } from 'global';
import { setInitialStory, setError, clearError } from './actions'; import { setInitialStory, setError, clearError } from './actions';

View File

@ -1,5 +1,4 @@
/* global window */ import { window } from 'global';
import { createStore } from 'redux'; import { createStore } from 'redux';
import addons from '@storybook/addons'; import addons from '@storybook/addons';
import createChannel from '@storybook/channel-postmessage'; import createChannel from '@storybook/channel-postmessage';

View File

@ -1,13 +1,5 @@
// import { environment } from './environments/environment';
// import { ErrorComponent } from './error.component.ts';
// import { document } from 'global';
import { renderNgApp, renderNgError, renderNoPreview } from './angular/helpers.ts'; import { renderNgApp, renderNgError, renderNoPreview } from './angular/helpers.ts';
// // check whether we're running on node/browser
// const isBrowser = typeof window !== 'undefined';
const logger = console; const logger = console;
let previousKind = ''; let previousKind = '';
let previousStory = ''; let previousStory = '';

View File

@ -1,4 +1,4 @@
/* eslint no-underscore-dangle: 0 */ /* eslint-disable no-underscore-dangle */
let count = 0; let count = 0;

View File

@ -1,2 +0,0 @@
// import '@storybook/addon-actions/register';
// import '@storybook/addon-links/register';

View File

@ -68,17 +68,9 @@ export default function(configDir) {
const finalConfig = babelConfig || defaultConfig; const finalConfig = babelConfig || defaultConfig;
// Ensure plugins are defined or fallback to an array to avoid empty values. // Ensure plugins are defined or fallback to an array to avoid empty values.
const babelConfigPlugins = finalConfig.plugins || []; const babelConfigPlugins = finalConfig.plugins || [];
const extraPlugins = [
[
require.resolve('babel-plugin-react-docgen'),
{
DOC_GEN_COLLECTION_NAME: 'STORYBOOK_REACT_CLASSES',
},
],
];
// If `babelConfigPlugins` is not an `Array`, calling `concat` will inject it // If `babelConfigPlugins` is not an `Array`, calling `concat` will inject it
// as a single value, if it is an `Array` it will be spreaded. // as a single value, if it is an `Array` it will be spreaded.
finalConfig.plugins = [].concat(babelConfigPlugins, extraPlugins); finalConfig.plugins = [].concat(babelConfigPlugins);
return finalConfig; return finalConfig;
} }

View File

@ -1,90 +1,89 @@
import mock from 'mock-fs';
import loadBabelConfig from './babel_config'; import loadBabelConfig from './babel_config';
// eslint-disable-next-line global-require
jest.mock('fs', () => require('../../../../__mocks__/fs'));
jest.mock('path', () => ({
resolve: () => '.babelrc',
parse: require.requireActual('path').parse,
join: require.requireActual('path').join,
dirname: require.requireActual('path').dirname,
}));
const setup = ({ files }) => {
// eslint-disable-next-line no-underscore-dangle, global-require
require('fs').__setMockFiles(files);
};
describe('babel_config', () => { describe('babel_config', () => {
// As the 'fs' is going to be mocked, let's call require.resolve // As the 'fs' is going to be mocked, let's call require.resolve
// so the require.cache has the correct route to the file. // so the require.cache has the correct route to the file.
// In fact let's use it in the tests :) // In fact let's use it in the tests :)
const babelPluginReactDocgenPath = require.resolve('babel-plugin-react-docgen');
it('should return the config with the extra plugins when `plugins` is an array.', () => { it('should return the config with the extra plugins when `plugins` is an array.', () => {
// Mock a simple `.babelrc` config file. setup({
mock({ files: {
'.babelrc': `{ '.babelrc': `{
"presets": [ "presets": [
"es2015", "env",
"foo-preset" "foo-preset"
], ],
"plugins": [ "plugins": [
"foo-plugin" "foo-plugin"
] ]
}`, }`,
},
}); });
const config = loadBabelConfig('.foo'); const config = loadBabelConfig('.foo');
expect(config.plugins).toEqual([ expect(config).toEqual({
'foo-plugin', babelrc: false,
[ plugins: ['foo-plugin'],
babelPluginReactDocgenPath, presets: ['env', 'foo-preset'],
{ });
DOC_GEN_COLLECTION_NAME: 'STORYBOOK_REACT_CLASSES',
},
],
]);
mock.restore();
}); });
it('should return the config with the extra plugins when `plugins` is not an array.', () => { it('should return the config with the extra plugins when `plugins` is not an array.', () => {
// Mock a `.babelrc` config file with plugins key not being an array. setup({
mock({ files: {
'.babelrc': `{ '.babelrc': `{
"presets": [ "presets": [
"es2015", "env",
"foo-preset" "foo-preset"
], ],
"plugins": "bar-plugin" "plugins": "bar-plugin"
}`, }`,
},
}); });
const config = loadBabelConfig('.bar'); const config = loadBabelConfig('.bar');
expect(config.plugins).toEqual([ expect(config).toEqual({
'bar-plugin', babelrc: false,
[ plugins: ['bar-plugin'],
babelPluginReactDocgenPath, presets: ['env', 'foo-preset'],
{ });
DOC_GEN_COLLECTION_NAME: 'STORYBOOK_REACT_CLASSES',
},
],
]);
mock.restore();
}); });
it('should return the config only with the extra plugins when `plugins` is not present.', () => { it('should return the config only with the extra plugins when `plugins` is not present.', () => {
// Mock a `.babelrc` config file with no plugins key. // Mock a `.babelrc` config file with no plugins key.
mock({ setup({
files: {
'.babelrc': `{ '.babelrc': `{
"presets": [ "presets": [
"es2015", "env",
"foo-preset" "foo-preset"
] ]
}`, }`,
},
}); });
const config = loadBabelConfig('.biz'); const config = loadBabelConfig('.biz');
expect(config.plugins).toEqual([ expect(config).toEqual({
[ babelrc: false,
babelPluginReactDocgenPath, plugins: [],
{ presets: ['env', 'foo-preset'],
DOC_GEN_COLLECTION_NAME: 'STORYBOOK_REACT_CLASSES', });
},
],
]);
mock.restore();
}); });
}); });