Skip to content
Merged

Dev #2058

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
f6fe194
Initial Commit fixing the issue with case insentivity
Feb 17, 2026
4341723
adding new file
Feb 18, 2026
90f5b01
Fixing a modal issue
Feb 18, 2026
0cf1717
AB#29187 - Add text area resize handle to Email and Email Template ed…
plavoie-BC Feb 26, 2026
d248163
Merge remote-tracking branch 'origin/dev' into feature/AB#29187-expan…
plavoie-BC Feb 26, 2026
a351d47
AB#29187 - Remove autoresize experimental code
plavoie-BC Feb 26, 2026
a26f280
Merge branch 'dev' into feature/AB#31935-FixCaseSentitivityBugCypress…
Feb 26, 2026
a241bbe
AB#30429 add agent contacts
AndreGAot Feb 26, 2026
0afaca3
adding the new date picker changes
Feb 26, 2026
061b953
adding support for observer loop
Feb 26, 2026
63ade69
Merge remote-tracking branch 'origin/dev' into feature/AB#30429-profi…
AndreGAot Feb 27, 2026
739f395
AB#30429 fix unit tests
AndreGAot Feb 27, 2026
53fad35
update the Communities SQL Script and delete the Census Subdivisions …
Stephan-McColm Feb 27, 2026
0676e96
AB#30429 codeQL suggestions
AndreGAot Feb 27, 2026
907a8a2
Merge pull request #2046 from bcgov/feature/AB#31935-FixCaseSentitivi…
JamesPasta Feb 27, 2026
24a9725
AB#32004 SonarQube fixes
jacobwillsmith Feb 27, 2026
e8ca2cf
Merge pull request #2041 from bcgov/feature/AB#29187-expand-textarea
JamesPasta Feb 27, 2026
56ee555
Merge pull request #2055 from bcgov/feature/AB#32004-ImprovePrompt-So…
JamesPasta Feb 27, 2026
185af9f
hotfix/AB#32016-FixBatchPaymentsNightly
JamesPasta Feb 27, 2026
0e1e395
Merge pull request #2057 from bcgov/hotfix/AB#32016-FixBatchNightly
JamesPasta Feb 27, 2026
f98ae3f
AB#30429 fix unit tests after codeQL suggestions
AndreGAot Feb 27, 2026
2488280
Merge pull request #2054 from bcgov/feature/AB#32106-Update-the-Commu…
AndreGAot Feb 27, 2026
7289673
Merge pull request #2052 from bcgov/feature/AB#30429-profile-contacts…
AndreGAot Feb 27, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/// <reference types="cypress" />

import { loginIfNeeded } from "../support/auth";
import { ApplicationsListPage } from "../pages/ApplicationDetailsPage";
import { ApplicationsListPage } from "../pages/ApplicationsListPage";

describe("Unity Login and check data from CHEFS", () => {
const page = new ApplicationsListPage();
Expand Down Expand Up @@ -171,13 +171,12 @@ describe("Unity Login and check data from CHEFS", () => {
page.switchToGrantProgram("Default Grants Program");
});

it("Tests the existence and functionality of the Submitted Date From and Submitted Date To filters", () => {
// Set date filters using page object methods
it("Tests the existence and functionality of the Quick Date Range filter", () => {
// Select "All time" from quick date range dropdown and verify table refreshes
page
.setSubmittedFromDate("2022-01-01")
.selectQuickDateRange("alltime")
.waitForTableRefresh()
.setSubmittedToDate(page.getTodayIsoLocal())
.waitForTableRefresh();
.verifyQuickDateRangeValue("alltime");
});

// With no rows selected verify the visibility of Filter, Export, Save View, and Columns.
Expand All @@ -196,7 +195,7 @@ describe("Unity Login and check data from CHEFS", () => {
.verifyTableHasData()
.selectMultipleRows([0, 1])
.verifyActionBarExists()
.clickPaymentButton()
.clickPaymentButtonWithWait()
.waitForPaymentModalVisible()
.closePaymentModal()
.verifyPaymentModalClosed();
Expand Down
18 changes: 18 additions & 0 deletions applications/Unity.AutoUI/cypress/e2e/basicEmail.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,24 @@ describe("Send an email", () => {
});

it("Open Emails tab", () => {
// Dismiss any swal2 modal that may be covering the tab
cy.get("body").then(($body) => {
if ($body.find(".swal2-container").length > 0) {
cy.get(".swal2-container").then(($swal) => {
if ($swal.find(".swal2-close").length > 0) {
cy.get(".swal2-close").click({ force: true });
} else if ($swal.find(".swal2-confirm").length > 0) {
cy.get(".swal2-confirm").click({ force: true });
} else {
cy.get("body").type("{esc}", { force: true });
}
});
cy.get(".swal2-container", { timeout: STANDARD_TIMEOUT }).should(
"not.exist",
);
}
});

cy.get("#emails-tab", { timeout: STANDARD_TIMEOUT })
.should("exist")
.should("be.visible")
Expand Down
11 changes: 5 additions & 6 deletions applications/Unity.AutoUI/cypress/e2e/chefsdata.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,12 @@ describe('Unity Login and check data from CHEFS', () => {
// Ensure the search field exists
cy.get('#search', { timeout: STANDARD_TIMEOUT }).should('exist')

// Conditionally widen Submitted Date range if the control exists
// Select "All time" from quick date range to widen the search
cy.get('body', { timeout: STANDARD_TIMEOUT }).then(($body) => {
if ($body.find('input#submittedFromDate').length > 0) {
cy.get('input#submittedFromDate', { timeout: STANDARD_TIMEOUT })
.should('exist')
.clear()
.type('2022-01-01')
if ($body.find('select#quickDateRange').length > 0) {
cy.get('select#quickDateRange', { timeout: STANDARD_TIMEOUT })
.should('be.visible')
.select('alltime')
}
})

Expand Down
Loading
Loading