mirror of
https://github.com/mempool/mempool.git
synced 2024-11-20 10:21:52 +01:00
1bd0c40c15
* add @cypress/schematic as a dev dependency * replace protractor with cypress * remove the boilerplate test * add the cypress-wait-until helper library * add cypress-wait-until to all tests * add signet to stg proxy config * add proxy config for production * add environment configs to angular.json * update e2e target to use the production proxy * update serve and start scripts to use the new environment config * add the concurrently lib to the dev dependencies * fix missing import * ignore videos and screenshots saved by the e2e suite * add fixtures for the tests * update cypress npm scripts to use concurrently * add some e2e tests
46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
// ***********************************************
|
|
// This example namespace declaration will help
|
|
// with Intellisense and code completion in your
|
|
// IDE or Text Editor.
|
|
// ***********************************************
|
|
// declare namespace Cypress {
|
|
// interface Chainable<Subject = any> {
|
|
// customCommand(param: any): typeof customCommand;
|
|
// }
|
|
// }
|
|
//
|
|
// function customCommand(param: any): void {
|
|
// console.warn(param);
|
|
// }
|
|
//
|
|
// NOTE: You can use it like so:
|
|
// Cypress.Commands.add('customCommand', customCommand);
|
|
//
|
|
// ***********************************************
|
|
// 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 will overwrite an existing command --
|
|
// Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... })
|
|
|
|
import 'cypress-wait-until';
|