## Description - The PR does below: - TogglePropertyState() revert - BinaryDT_Spec.ts - unskip - AssertExistingToggleState() improved to handle the UI field names - Unskip TableV1/TableFilter2_1_Spec.ts & TableV2Filter2_1_Spec - Fixed Apps/CommunityIssues_Spec.ts - Added ClientSide Search validation - /Binding/Button_Text_WithRecaptcha_spec.js - fix & unskip - GitSync/DeleteBranch_spec.js - fix & unskip - TableV2/TableV2_Widget_Add_button_spec.js - flaky fix - Cypress upgrade from v12.17.4 to v13.0.0 #### Type of change - Script fix (non-breaking change which fixes an issue) ## Testing #### How Has This Been Tested? - [X] Cypress CI runs ## Checklist: #### QA activity: - [X] Added `Test Plan Approved` label after Cypress tests were reviewed --------- Co-authored-by: Saroj <43822041+sarojsarab@users.noreply.github.com>
39 lines
933 B
TypeScript
39 lines
933 B
TypeScript
import { defineConfig } from "cypress";
|
|
|
|
export default defineConfig({
|
|
defaultCommandTimeout: 30000,
|
|
requestTimeout: 60000,
|
|
responseTimeout: 60000,
|
|
pageLoadTimeout: 60000,
|
|
videoCompression: false,
|
|
numTestsKeptInMemory: 5,
|
|
experimentalMemoryManagement: true,
|
|
reporterOptions: {
|
|
reportDir: "results",
|
|
overwrite: false,
|
|
html: true,
|
|
json: false,
|
|
},
|
|
chromeWebSecurity: false,
|
|
viewportHeight: 1200,
|
|
viewportWidth: 1400,
|
|
scrollBehavior: "center",
|
|
retries: {
|
|
runMode: 1,
|
|
openMode: 0,
|
|
},
|
|
e2e: {
|
|
baseUrl: "http://localhost/",
|
|
setupNodeEvents(on, config) {
|
|
return require("./cypress/plugins/index.js")(on, config);
|
|
},
|
|
specPattern: "cypress/e2e/**/*.{js,ts}",
|
|
testIsolation: false,
|
|
excludeSpecPattern: [
|
|
"cypress/e2e/**/spec_utility.ts",
|
|
"cypress/e2e/GSheet/**/**/*",
|
|
"cypress/e2e/Sanity/Datasources/Airtable_Basic_Spec.ts",
|
|
],
|
|
},
|
|
});
|