mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
13 lines
305 B
TypeScript
13 lines
305 B
TypeScript
import renderStorybookUI from '..';
|
|
|
|
describe('Main API', () => {
|
|
it('should fail if provider is not extended from the base Provider', () => {
|
|
const run = () => {
|
|
const fakeProvider = {};
|
|
renderStorybookUI(null, fakeProvider);
|
|
};
|
|
|
|
expect(run).toThrow(/base Provider/);
|
|
});
|
|
});
|