Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: implementing SSO #731

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export default defineConfig({
// video: false,
retries: 5,
e2e: {
testIsolation: false,
// We've imported your old cypress plugins here.
// You may want to clean this up later by importing these.
setupNodeEvents(on, config) {
Expand Down
1 change: 0 additions & 1 deletion cypress/e2e/pia-angular/dpo/dpo_and_pia_validation.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ describe("Validation", () => {
context("Avis du DPD et des personnes concernées", () => {
it("should complete DPD", () => {
cy.get_current_pia_id(id => {
visit_id = id;
cy.go_edited_pia(id, 4, 3).then(() => {
cy.validateDPO();
});
Expand Down
3 changes: 2 additions & 1 deletion cypress/e2e/pia-angular/entries/entries_table.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,15 @@ describe("Entries_table", () => {
// Skip tutorial
cy.disable_onboarding();
cy.visit(`/#/entries`);
cy.get(".pia-filtersBlock-switch").click();
// cy.get(".pia-filtersBlock-switch").click({force: true});
});

/**
* Table
*/
context("entries_table", () => {
it("change display and check if there is a table", () => {
cy.get(".pia-filtersBlock-switch").click({ force: true });
cy.get("table").should("exist");
});

Expand Down
1 change: 1 addition & 0 deletions cypress/support/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Cypress.Commands.add("focus_out", () => {

Cypress.Commands.add("go_edited_pia", (id = 2, section = 1, item = 1) => {
cy.visit(`/#/pia/${id}/section/${section}/item/${item}`);
cy.wait(2000);
});

Cypress.Commands.add("import_pia", () => {
Expand Down
Loading
Loading