mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
Run prettier
This commit is contained in:
parent
c2dc5bfa08
commit
a0b6eea992
@ -184,12 +184,10 @@ describe('Viewport/Panel', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it('sets the state with the new information', () => {
|
it('sets the state with the new information', () => {
|
||||||
expect(subject.instance().setState.mock.calls[0][0]).toEqual(
|
expect(subject.instance().setState.mock.calls[0][0]).toEqual({
|
||||||
{
|
viewport: initialViewportAt(1),
|
||||||
viewport: initialViewportAt(1),
|
isLandscape: false,
|
||||||
isLandscape: false,
|
});
|
||||||
}
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -213,21 +211,17 @@ describe('Viewport/Panel', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it('sets the state with the new information', () => {
|
it('sets the state with the new information', () => {
|
||||||
expect(subject.instance().setState.mock.calls.length).toBe(2);
|
expect(subject.instance().setState.mock.calls).toHaveLength(2);
|
||||||
expect(subject.instance().setState.mock.calls[0][0]).toEqual(
|
expect(subject.instance().setState.mock.calls[0][0]).toEqual({
|
||||||
{
|
storyDefaultViewport: 'iphone5',
|
||||||
storyDefaultViewport: 'iphone5'
|
});
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
expect(subject.instance().setState.mock.calls[1][0]).toEqual(
|
expect(subject.instance().setState.mock.calls[1][0]).toEqual({
|
||||||
{
|
viewport: initialViewportAt(1),
|
||||||
viewport: initialViewportAt(1),
|
isLandscape: false,
|
||||||
isLandscape: false
|
});
|
||||||
}
|
|
||||||
);
|
|
||||||
expect(typeof subject.instance().setState.mock.calls[1][1]).toEqual('function');
|
expect(typeof subject.instance().setState.mock.calls[1][1]).toEqual('function');
|
||||||
|
|
||||||
const updaterFunction = subject.instance().setState.mock.calls[1][1];
|
const updaterFunction = subject.instance().setState.mock.calls[1][1];
|
||||||
updaterFunction();
|
updaterFunction();
|
||||||
|
|
||||||
@ -246,7 +240,7 @@ describe('Viewport/Panel', () => {
|
|||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
subject.instance().state = {
|
subject.instance().state = {
|
||||||
...subject.instance().state,
|
...subject.instance().state,
|
||||||
viewport: initialViewportAt(1)
|
viewport: initialViewportAt(1),
|
||||||
};
|
};
|
||||||
subject.instance().emitViewportChanged();
|
subject.instance().emitViewportChanged();
|
||||||
});
|
});
|
||||||
@ -254,10 +248,9 @@ describe('Viewport/Panel', () => {
|
|||||||
it('emits viewport changed event', () => {
|
it('emits viewport changed event', () => {
|
||||||
const viewport = transformedInitialViewports[initialViewportAt(1)];
|
const viewport = transformedInitialViewports[initialViewportAt(1)];
|
||||||
|
|
||||||
expect(props.channel.emit).toHaveBeenCalledWith(
|
expect(props.channel.emit).toHaveBeenCalledWith('addon:viewport:viewportChanged', {
|
||||||
'addon:viewport:viewportChanged',
|
viewport,
|
||||||
{ viewport }
|
});
|
||||||
);
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ export default class Viewport extends React.Component {
|
|||||||
|
|
||||||
static defaultProps = {
|
static defaultProps = {
|
||||||
name: DEFAULT_VIEWPORT,
|
name: DEFAULT_VIEWPORT,
|
||||||
onViewportChange: noop
|
onViewportChange: noop,
|
||||||
};
|
};
|
||||||
|
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
|
@ -49,10 +49,7 @@ describe('Viewport', () => {
|
|||||||
subject = shallow(<Viewport {...props} onViewportChange={noop} />);
|
subject = shallow(<Viewport {...props} onViewportChange={noop} />);
|
||||||
|
|
||||||
expect(channel.on).toHaveBeenCalledTimes(1);
|
expect(channel.on).toHaveBeenCalledTimes(1);
|
||||||
expect(channel.on).toHaveBeenCalledWith(
|
expect(channel.on).toHaveBeenCalledWith('addon:viewport:viewportChanged', noop);
|
||||||
'addon:viewport:viewportChanged',
|
|
||||||
noop
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -60,12 +57,9 @@ describe('Viewport', () => {
|
|||||||
it('removes viewport changes listener', () => {
|
it('removes viewport changes listener', () => {
|
||||||
subject = shallow(<Viewport {...props} onViewportChange={noop} />);
|
subject = shallow(<Viewport {...props} onViewportChange={noop} />);
|
||||||
subject.unmount();
|
subject.unmount();
|
||||||
|
|
||||||
expect(channel.removeListener).toHaveBeenCalledTimes(1);
|
expect(channel.removeListener).toHaveBeenCalledTimes(1);
|
||||||
expect(channel.removeListener).toHaveBeenCalledWith(
|
expect(channel.removeListener).toHaveBeenCalledWith('addon:viewport:viewportChanged', noop);
|
||||||
'addon:viewport:viewportChanged',
|
|
||||||
noop
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -74,7 +68,7 @@ describe('Viewport', () => {
|
|||||||
const propsWithCallback = {
|
const propsWithCallback = {
|
||||||
name: 'unknown',
|
name: 'unknown',
|
||||||
children: 'do not exist',
|
children: 'do not exist',
|
||||||
onViewportChange: jest.fn()
|
onViewportChange: jest.fn(),
|
||||||
};
|
};
|
||||||
|
|
||||||
beforeAll(() => {
|
beforeAll(() => {
|
||||||
@ -87,15 +81,13 @@ describe('Viewport', () => {
|
|||||||
|
|
||||||
it('calls onViewportChange with the newly selected viewport', () => {
|
it('calls onViewportChange with the newly selected viewport', () => {
|
||||||
emitter.emit(VIEWPORT_CHANGED_EVENT_ID, {
|
emitter.emit(VIEWPORT_CHANGED_EVENT_ID, {
|
||||||
viewport: INITIAL_VIEWPORTS.iphone5
|
viewport: INITIAL_VIEWPORTS.iphone5,
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(propsWithCallback.onViewportChange).toHaveBeenCalled();
|
expect(propsWithCallback.onViewportChange).toHaveBeenCalled();
|
||||||
expect(propsWithCallback.onViewportChange).toHaveBeenCalledWith(
|
expect(propsWithCallback.onViewportChange).toHaveBeenCalledWith({
|
||||||
{
|
viewport: INITIAL_VIEWPORTS.iphone5,
|
||||||
viewport: INITIAL_VIEWPORTS.iphone5
|
});
|
||||||
}
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
23
app/react-native/src/bin/storybook-start.js
vendored
23
app/react-native/src/bin/storybook-start.js
vendored
@ -58,27 +58,24 @@ if (!program.skipPackager) {
|
|||||||
roots = roots.concat(program.root.split(',').map(root => path.resolve(root)));
|
roots = roots.concat(program.root.split(',').map(root => path.resolve(root)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// eslint-disable-next-line global-require
|
// eslint-disable-next-line global-require
|
||||||
require("babel-register")({
|
require('babel-register')({
|
||||||
"presets": ["flow"],
|
presets: ['flow'],
|
||||||
ignore: false,
|
ignore: false,
|
||||||
babelrc: false});
|
babelrc: false,
|
||||||
|
});
|
||||||
|
|
||||||
// eslint-disable-next-line global-require
|
// eslint-disable-next-line global-require
|
||||||
const findSymlinkedModules = require('react-native/local-cli/util/findSymlinkedModules');
|
const findSymlinkedModules = require('react-native/local-cli/util/findSymlinkedModules');
|
||||||
symlinks = roots.reduce(
|
symlinks = roots.reduce((arr, rootPath) => arr.concat(findSymlinkedModules(rootPath, roots)), [
|
||||||
(arr, rootPath) => arr.concat(findSymlinkedModules(rootPath, roots)),
|
...roots,
|
||||||
[...roots]
|
]);
|
||||||
);
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.warn(`Unable to load findSymlinksPaths: ${e.message}`, e);
|
console.warn(`Unable to load findSymlinksPaths: ${e.message}`, e);
|
||||||
}
|
}
|
||||||
|
|
||||||
let projectRoots = (configDir === projectDir ? [] : [configDir]).concat(
|
let projectRoots = (configDir === projectDir ? [] : [configDir]).concat(symlinks);
|
||||||
symlinks
|
|
||||||
);
|
|
||||||
|
|
||||||
if (program.projectRoots) {
|
if (program.projectRoots) {
|
||||||
projectRoots = projectRoots.concat(
|
projectRoots = projectRoots.concat(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user