ToolJet/cypress-tests/cypress/support/e2e.js
Ajith KV d10ca6f647
Add Cypress test cases for gitsync functionality (#16208)
* Add Cypress test cases for gitsync functionality

* update the UI cases

* update custom commands

* Update the test cases

* Add version tagging test cases

* update the test cases

* fix commit function

* update the failing test cases

* update failing test cases

* update the selectors

* update the test cases
2026-05-08 17:43:17 +05:30

39 lines
1.2 KiB
JavaScript

// ***********************************************************
// This example support/index.js is processed and
// loaded automatically before your test files.
//
// This is a great place to put global configuration and
// behavior that modifies Cypress.
//
// You can change the location of this file or turn off
// automatically serving support files with the
// 'supportFile' configuration option.
//
// You can read more here:
// https://on.cypress.io/configuration
// ***********************************************************
// Import commands.js using ES2015 syntax:
import "cypress-real-events/support";
import "@cypress/code-coverage/support";
import "cypress-real-events";
import "../commands/commands";
import "../commands/apiCommands";
import "../commands/workflowsApiCommands";
import '../commands/workflowCommands';
import '../commands/platform/platformApiCommands';
import '../commands/marketplace/marketplaceAPICommands';
import '../commands/marketplace/marketplaceCommands';
import '../commands/platform/gitSyncCommands';
import '../commands/platform/gitSyncAppCommands';
// Alternatively you can use CommonJS syntax:
// require('./commands')
Cypress.on("uncaught:exception", (err, runnable) => {
return false;
});