powerful-orange-86819
01/31/2023, 1:22 PMjs
describe('Playground', () => {
context.only("ctx 1", () => {
before(() => {
// make this a custom command
cy.request("api/v1/example").then(
(response) =>
expect(response.status).to.eq(300);
}
);
});
it("test skipped 1", () => {
cy.log("skipped");
});
it("test skipped 2", () => {
cy.log("skipped");
});
it("test skipped 3", () => {
cy.log("skipped");
});
});
context.only("ctx 2", () => {
it("test 1", () => {
cy.log("not skipped");
});
});
});