describe('Instruments Page', () => { beforeEach(() => { cy.setup(); }); it('opens the instruments page', () => { cy.mockGraphqlOps({ operations: { MeQuery: {}, InstrumentsQuery: { instruments: [] } } }); cy.visit('instruments/'); }); });