mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
2120c601d3
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5529 GitOrigin-RevId: cf487e53137cb884236bfa0a394a719506e11b1b
27 lines
809 B
TypeScript
27 lines
809 B
TypeScript
import { getTestMode } from './core/testMode';
|
|
|
|
export const testMode = getTestMode();
|
|
export const baseUrl = Cypress.config('baseUrl');
|
|
export const migrateUrl = Cypress.env('MIGRATE_URL');
|
|
export const migrateModeUrl = `${migrateUrl}/settings`;
|
|
|
|
// sets value of window.prompt and reloads page
|
|
export const setPromptValue = (value: string | null) => {
|
|
cy.log(`Set window.prompt to "${value}"`).then(() => {
|
|
cy.removeAllListeners('window:before:load');
|
|
cy.on('window:before:load', win => {
|
|
cy.stub(win, 'prompt').returns(value);
|
|
});
|
|
});
|
|
|
|
cy.reload();
|
|
};
|
|
|
|
// This is works as setPromptValue with no unnecessary waiting
|
|
export const setPromptWithCb = (value: string | null, cb: () => void) => {
|
|
cy.window().then(win => {
|
|
cy.stub(win, 'prompt').returns(value);
|
|
cb();
|
|
});
|
|
};
|