-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Cypress and basic WordPress log in/out test
- Loading branch information
1 parent
b15d588
commit 97f4a32
Showing
10 changed files
with
1,623 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,3 +69,8 @@ vendor | |
|
||
# General | ||
NOTES.md | ||
|
||
# Cypress | ||
/cypress.env.json | ||
/tests/cypress/videos | ||
/tests/cypress/screenshots |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"wp_username": "Copy this file, remove .EXAMPLE extension, and put your local WordPress username here", | ||
"wp_password": "Put your local WordPress password here" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"baseUrl": "http://cmb2.test", | ||
"fileServerFolder": "tests/cypress", | ||
"fixturesFolder": "tests/cypress/fixtures", | ||
"integrationFolder": "tests/cypress/integration", | ||
"pluginsFile": "tests/cypress/plugins/index.js", | ||
"screenshotsFolder": "tests/cypress/screenshots", | ||
"supportFile": "tests/cypress/support/index.js", | ||
"videosFolder": "tests/cypress/videos" | ||
} |
Oops, something went wrong.