Skip to content

Commit c9caed3

Browse files
Merge pull request #2864 from christianvogt/cypress-docs
update cypress docs
2 parents 7048a18 + c2c479b commit c9caed3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/testing.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,13 +159,15 @@ There are two commands to run Cypress mock tests (always use the `:mock` variant
159159

160160
Running out of memory using the GUI? Cypress keeps track of a lot of data while testing. If you experience memory issues or crashes, use the following command to adjust the number of tests kept in memory:
161161
```bash
162-
npm run cypress:open:mock -- -- --config numTestsKeptInMemory=0
162+
npm run cypress:open:mock -- --config numTestsKeptInMemory=0
163163
```
164164

165165
### Structure
166166
```
167167
/frontend/src/__tests__/cypress
168-
/e2e - All test case files
168+
/tests - Tests
169+
/e2e - Live cluster tests
170+
/mocked - Mocked tests
169171
/pages - Page objects
170172
/components - Generic objects eg. modal, table
171173
/support - Custom commands and test wrappers

0 commit comments

Comments
 (0)