mirror of
https://github.com/hasura/graphql-engine.git
synced 2025-01-08 08:44:24 +03:00
8c21ca5d21
The changes turned out to be flaky — tests were failing from time to time, and blocking other PRs from being merged. Reverts hasura/graphql-engine-mono#1037 GitOrigin-RevId: 97d95156e8d348f2e89ec33e06ffaac9bf75a2f9
34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
// ***********************************************
|
|
// This example commands.js shows you how to
|
|
// create various custom commands and overwrite
|
|
// existing commands.
|
|
//
|
|
// For more comprehensive examples of custom
|
|
// commands please read more here:
|
|
// https://on.cypress.io/custom-commands
|
|
// ***********************************************
|
|
//
|
|
//
|
|
// -- This is a parent command --
|
|
// Cypress.Commands.add("login", (email, password) => { ... })
|
|
//
|
|
//
|
|
// -- This is a child command --
|
|
// Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... })
|
|
//
|
|
//
|
|
// -- This is a dual command --
|
|
// Cypress.Commands.add("dismiss", { prevSubject: 'optional'}, (subject, options) => { ... })
|
|
//
|
|
//
|
|
// -- This is will overwrite an existing command --
|
|
// Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... })
|
|
|
|
Cypress.Commands.add('getBySel', (selector, ...args) => {
|
|
return cy.get(`[data-test=${selector}]`, ...args);
|
|
});
|
|
|
|
Cypress.Commands.add('getBySelLike', (selector, ...args) => {
|
|
return cy.get(`[data-test*=${selector}]`, ...args);
|
|
});
|