mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:01:16 +08:00
FIX tests
This commit is contained in:
parent
814471a337
commit
8b28b30163
@ -3,7 +3,7 @@ import { shallow, mount } from 'enzyme';
|
||||
import { STORY_CHANGED } from '@storybook/core-events';
|
||||
import { TabsState } from '@storybook/components';
|
||||
|
||||
import { ThemeProvider, themes } from '@storybook/theming';
|
||||
import { ThemeProvider, themes, convert } from '@storybook/theming';
|
||||
import Panel from '../Panel';
|
||||
import { CHANGE, SET } from '../../shared';
|
||||
import PropForm from '../PropForm';
|
||||
@ -191,7 +191,7 @@ describe('Panel', () => {
|
||||
// We have to do a full mount.
|
||||
|
||||
const root = mount(
|
||||
<ThemeProvider theme={themes.light}>
|
||||
<ThemeProvider theme={convert(themes.light)}>
|
||||
<Panel channel={testChannel} api={testApi} active />
|
||||
</ThemeProvider>
|
||||
);
|
||||
@ -225,7 +225,7 @@ describe('Panel', () => {
|
||||
|
||||
it('should have one tab per groupId and an empty ALL tab when all are defined', () => {
|
||||
const root = mount(
|
||||
<ThemeProvider theme={themes.light}>
|
||||
<ThemeProvider theme={convert(themes.light)}>
|
||||
<Panel channel={testChannel} api={testApi} active />
|
||||
</ThemeProvider>
|
||||
);
|
||||
@ -265,7 +265,7 @@ describe('Panel', () => {
|
||||
|
||||
it('the ALL tab should have its own additional content when there are knobs both with and without a groupId', () => {
|
||||
const root = mount(
|
||||
<ThemeProvider theme={themes.light}>
|
||||
<ThemeProvider theme={convert(themes.light)}>
|
||||
<Panel channel={testChannel} api={testApi} active />
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
@ -2,7 +2,7 @@ import React from 'react';
|
||||
import { shallow } from 'enzyme';
|
||||
import { render } from 'react-testing-library';
|
||||
|
||||
import { ThemeProvider, themes } from '@storybook/theming';
|
||||
import { ThemeProvider, themes, convert } from '@storybook/theming';
|
||||
import ShortcutsScreen from './shortcuts';
|
||||
|
||||
// A limited set of keys we use in this test file
|
||||
@ -26,7 +26,7 @@ const makeActions = () => ({
|
||||
describe('ShortcutsScreen', () => {
|
||||
it('renders correctly', () => {
|
||||
const comp = shallow(
|
||||
<ThemeProvider theme={themes.light}>
|
||||
<ThemeProvider theme={convert(themes.light)}>
|
||||
<ShortcutsScreen shortcutKeys={shortcutKeys} {...makeActions()} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
@ -35,7 +35,7 @@ describe('ShortcutsScreen', () => {
|
||||
|
||||
it('handles a full mount', () => {
|
||||
const comp = render(
|
||||
<ThemeProvider theme={themes.light}>
|
||||
<ThemeProvider theme={convert(themes.light)}>
|
||||
<ShortcutsScreen shortcutKeys={shortcutKeys} {...makeActions()} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user