forked from verdnatura/salix-front
20 lines
585 B
JavaScript
20 lines
585 B
JavaScript
/// <reference types="cypress" />
|
|
describe('VnSearchBar', () => {
|
|
beforeEach(() => {
|
|
cy.login('developer');
|
|
cy.visit('/');
|
|
});
|
|
|
|
it('should redirect to new customer', () => {
|
|
cy.visit('#/customer/1112/basic-data');
|
|
cy.openLeftMenu();
|
|
cy.get('.q-item > .q-item__label').should('have.text', ' #1112');
|
|
cy.closeSideMenu();
|
|
cy.clearSearchbar();
|
|
cy.writeSearchbar('1{enter}');
|
|
cy.openLeftMenu();
|
|
cy.get('.q-item > .q-item__label').should('have.text', ' #1');
|
|
cy.closeSideMenu();
|
|
});
|
|
});
|