Skip to content

Commit

Permalink
Merge branch 'master' into oidc-redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
omkar-ethz authored Feb 25, 2025
2 parents eee3006 + e8acc3e commit 159216b
Show file tree
Hide file tree
Showing 84 changed files with 6,038 additions and 533 deletions.
4 changes: 2 additions & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
"maximumWarning": "8kb",
"maximumError": "8kb"
}
],
"fileReplacements": [
Expand Down
16 changes: 8 additions & 8 deletions cypress/e2e/proposals/proposals-general.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ describe("Proposals general", () => {

cy.get("mat-table mat-row").should("contain", proposal.proposalId);

cy.get("mat-row")
cy.get("mat-cell")
.contains(proposal.proposalId)
.parent()
.closest("mat-row")
.contains(proposal.title)
.click();

Expand All @@ -64,9 +64,9 @@ describe("Proposals general", () => {
cy.get("mat-table mat-row").should("contain", newProposal.proposalId);
cy.get("mat-table mat-row").should("contain", proposal.proposalId);

cy.get("mat-row")
cy.get("mat-cell")
.contains(newProposal.proposalId)
.parent()
.closest("mat-row")
.contains(newProposal.title)
.click();

Expand Down Expand Up @@ -200,9 +200,9 @@ describe("Proposals general", () => {
cy.get("mat-table mat-row").should("contain", newProposal.proposalId);
cy.get("mat-table mat-row").should("contain", newProposal2.proposalId);

cy.get("mat-row")
cy.get("mat-cell.mat-column-proposalId")
.contains(newProposal.proposalId)
.parent()
.closest("mat-row")
.contains(newProposal.title)
.click();

Expand Down Expand Up @@ -244,9 +244,9 @@ describe("Proposals general", () => {

cy.get("mat-table mat-row").should("contain", proposal.proposalId);

cy.get("mat-row")
cy.get("mat-cell.mat-column-proposalId")
.contains(proposal.proposalId)
.parent()
.closest("mat-row")
.contains(proposal.title)
.click();

Expand Down
Loading

0 comments on commit 159216b

Please sign in to comment.