mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:11:13 +08:00
17 lines
517 B
Plaintext
17 lines
517 B
Plaintext
```js
|
|
// /cypress/integration/Login.spec.js
|
|
|
|
/// <reference types="cypress" />
|
|
|
|
describe('Login Form', () => {
|
|
it('Should contain valid login information', () => {
|
|
cy.visit('/iframe.html?id=components-login-form--example');
|
|
cy.get('#login-form').within(() => {
|
|
cy.log('**enter the email**');
|
|
cy.get('#email').should('have.value', 'your-own-emailaddress@provider.com');
|
|
cy.log('**enter password**');
|
|
cy.get('#password').should('have.value', 'a-random-password');
|
|
});
|
|
});
|
|
});
|
|
``` |