So,
I was running a bunch of tests on only 1 describe and 1 it
. Something like this:
describe("ProjectManager", function () {
it("Many Tests", function () {
//Test 1
cy.get('blalblabla)'
blablalbalb
blalblabla
//Test 2
cy.get('blalblabla)'
blablalbalb
blalblabla
//Test 3
cy.get('blalblabla)'
blablalbalb
blalblabla
etc..
})
})
But now I decided to break down the tests into different it
blocks, like this:
describe("ProjectManager", function () {
it("Test 1", function () {
cy.get('blalblabla)'
blablalbalb
blalblabla
})
it("Test 2", function () {
cy.get('blalblabla)'
blablalbalb
blalblabla
})
it("Test 3", function () {
cy.get('blalblabla)'
blablalbalb
blalblabla
})
etc..
})
The reason for that being that, it looks neat when running, because it will show multiple tests instead of only one.
MY PROBLEM: All my tests are done in one specific part of the website. To get there, I have to login, and then click on a bunch of stuff, and even write/save stuff, etc.
MY QUESTION: Do I have to do a BeforeEach()
to do everything again after each it
? Because thats just not feasible to me, it's too much stuff. Or is there a way for each 'it' to just continue at the same place the last it
stopped and so I wouldn't even need the BeforeEach()
method ?
Using
describe()
andit()
is recommended as it gives your tests a structure. Instead ofbeforeEach()
you can usebefore()
that executes once before all it blocks. Here you can write your code like open your website, log in, etc. And then you can write your tests in continuation withit()