UNPKG

graphdb-workbench-tests

Version:
10 lines (8 loc) 312 B
export class Stubs { static stubQueryResponse(url, fixture, alias, withDelay = 0) { cy.intercept(url, {fixture, delay: withDelay}).as(alias); } static stubGetQueryResponse(url, fixture, alias, withDelay = 0) { cy.intercept('GET', url, {fixture, delay: withDelay}).as(alias); } }