-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1102 from necyberteam/md-dev
Md dev
- Loading branch information
Showing
131 changed files
with
517 additions
and
341 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,13 +17,13 @@ describe("Authenticated user tests the Events Form without Affinity Group", () = | |
cy.loginAs("[email protected]", "b8QW]X9h7#5n"); | ||
cy.visit("/events/add"); | ||
|
||
//Page Title | ||
// Page Title | ||
cy.get("#block-claro-page-title").contains("Create ACCESS Event"); | ||
|
||
//User filling out form title | ||
// User filling out form title | ||
cy.get("#edit-title-0-value").type("example-event"); | ||
|
||
//Date and Time of Event | ||
// Date and Time of Event | ||
cy.get("#edit-recur-type-custom").click(); | ||
cy.get("#custom-date-values > thead > tr > .field-label").contains( | ||
"Custom Date(s) and Time(s)" | ||
|
@@ -33,19 +33,19 @@ describe("Authenticated user tests the Events Form without Affinity Group", () = | |
cy.get("#edit-custom-date-0-value-time").type("04:30:00"); | ||
cy.get("#edit-custom-date-0-end-value-time").type("04:30:00"); | ||
|
||
//Event Location | ||
// Event Location | ||
cy.get("#edit-field-location-0-value").type("Zoom"); | ||
|
||
//Event Contact | ||
// Event Contact | ||
cy.get("#edit-field-contact-0-value").type("Pecan Pie"); | ||
|
||
//Registration Link | ||
// Registration Link | ||
cy.get("#edit-field-registration-0-uri").type( | ||
"https://test-accessmatch.pantheonsite.io/" | ||
); | ||
|
||
//Event Tag | ||
cy.get("#edit-field-tags-0-target-id").type("login (682)"); | ||
// Event Tag | ||
cy.get("details.tags summary").click().get("#tag-login").click(); | ||
|
||
//Save As Selection | ||
cy.get("#edit-moderation-state-0-state").select("Published"); | ||
|
Oops, something went wrong.