Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created February 13, 2020 03:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IntegerMan/c30289515f7fa3827223ce44fd0db4ce to your computer and use it in GitHub Desktop.
Save IntegerMan/c30289515f7fa3827223ce44fd0db4ce to your computer and use it in GitHub Desktop.
import {moduleMetadata, storiesOf} from '@storybook/angular';
import {AppModule} from './app.module';
import {AppComponent} from './app.component';
import { withA11y } from '@storybook/addon-a11y';
storiesOf('App', module)
.addDecorator(moduleMetadata({ imports: [ AppModule ]}))
.addDecorator(withA11y)
.add('App Basic Tests', () => ({
component: AppComponent,
props: {
},
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment