feat(storybook): import plugins (#3768)

This commit is contained in:
Alex Yang
2023-08-16 03:01:14 -05:00
committed by GitHub
parent 73eddc2386
commit 3dbefda6ed
7 changed files with 10 additions and 23 deletions
@@ -1,7 +1,9 @@
import { pluginRegisterPromise } from '@affine/core/bootstrap/register-plugins';
import { routes } from '@affine/core/router';
import { assertExists } from '@blocksuite/global/utils';
import type { StoryContext, StoryFn } from '@storybook/react';
import { userEvent, waitFor } from '@storybook/testing-library';
import { use } from 'foxact/use';
import { Outlet, useLocation } from 'react-router-dom';
import {
reactRouterOutlets,
@@ -25,6 +27,7 @@ export default {
};
export const Index: StoryFn = () => {
use(pluginRegisterPromise);
return <FakeApp />;
};
Index.decorators = [withRouter, withCleanLocalStorage];