mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 03:01:05 +08:00
11 lines
322 B
Plaintext
11 lines
322 B
Plaintext
```js
|
||
// MyComponent.spec.js
|
||
|
||
describe('My Component', () => {
|
||
it('should respond to click on button with warning', () => {
|
||
cy.visit('http://localhost:6006/iframe.html?id=my-component--basic-story’);
|
||
cy.get('#button').click();
|
||
cy.get('#warning').should('contain.text', 'You need to fill in the form!');
|
||
});
|
||
})
|
||
``` |