forked from verdnatura/salix-front
19 lines
577 B
JavaScript
19 lines
577 B
JavaScript
/// <reference types="cypress" />
|
|
describe('WorkerNotes', () => {
|
|
const userId = 1106;
|
|
const addNote = '[data-cy="addNote"]';
|
|
const numberOfWagons = '[data-cy="numberOfWagons"]';
|
|
const linesLimit = '[data-cy="linesLimit"]';
|
|
const volumeLimit = '[data-cy="volumeLimit"]';
|
|
const sizeLimit = '[data-cy="sizeLimit"]';
|
|
beforeEach(() => {
|
|
cy.viewport(1280, 720);
|
|
cy.login('developer');
|
|
cy.visit(`/#/worker/${userId}/notes`);
|
|
});
|
|
|
|
it('Should load layout', () => {
|
|
cy.get('.q-card').should('be.visible');
|
|
});
|
|
});
|