feat: adding Storybook to Superset (#10383)

* Storybook added!

* starting to configure junk....

* Storybook works!!!

* Now with theme!

* apache boilerplate

* more apache comments

* lots o' knobs for the Button.... taking stock of the codebase

* more classes, but killing the knob for now.

* nixing unused module

* linting

* fresh package-lock

* now with tooltip!

* adding path and zlip because the linter told me to

* upgrading storybook packages from devdeps

* linting

* removing cruft

* killing an annoying (and old?) lint issue

* lint fix, take 2.

* removing zlib/path

* package lock reset from master

* re-adding new packages for this here PR

* nixing console log, simplifying

* nixing comment TODOs (done enough!)

* basic docs.
This commit is contained in:
Evan Rusackas
2020-07-22 10:21:25 -07:00
committed by GitHub
parent 961108625e
commit ca71d4d6ee
9 changed files with 6663 additions and 239 deletions

View File

@@ -21,6 +21,7 @@ import { shallow } from 'enzyme';
import ResizableHandle from 'src/dashboard/components/resizable/ResizableHandle';
/* eslint-disable react/jsx-pascal-case */
describe('ResizableHandle', () => {
it('should render a right resize handle', () => {
const wrapper = shallow(<ResizableHandle.right />);
@@ -41,3 +42,4 @@ describe('ResizableHandle', () => {
).toHaveLength(1);
});
});
/* eslint-enable react/jsx-pascal-case */