```js describe('Playground', () => { c...
# best-practices
p
Copy code
js
  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");
      });
    });
  });