Slide 6
Slide 6 text
Sintaxe . . .
Cypress
cy.get(`.text-field`).type(`Oi`);
it.only(`some test`, () => {...});
it.skip(`other test`, () => {...});
describe.only(`test suite`, () =>
{...});
describe.skip(`test suite`, () =>
{...});
Protractor
element(by.css(`.text-field`)).sendKe
ys(`Oi`);
fit(`some test`, () => {...});
xit(`other test`, () => {...});
fdescribe(`test suite`, () => {...});
xdescribe(`test suite`, () => {...});