Applitools Regression Testing cycle
import { storiesOf } from '@storybook/angular'; | |
import { withNotes } from '@storybook/addon-notes'; | |
import { action } from '@storybook/addon-actions'; | |
import { ContentEditableComponent } from './../app/components/contenteditable.component'; | |
storiesOf('ContentEditable Component', module) | |
.add( | |
'with yellow background', | |
withNotes('Testing the background color for the editable area and setting it to yellow')(() => ({ | |
component: ContentEditableComponent, | |
props: { | |
styles: { 'background-color': 'blue', 'padding': '25px' }, | |
ngModel: 'The content goes here', | |
ngModelChange: action('ngModelChange') | |
} | |
})) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment