diff --git a/CHANGES.md b/CHANGES.md index f7796dab3..97d2b8e78 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -50,7 +50,7 @@ is a number of cores) - [COMMENTS] Notifications in Backend, Profile Section, and Mention Email Notification [Taiga #9233](https://tree.taiga.io/project/penpot/us/9233) ### :bug: Bugs fixed - +- Fix typo on integration tests docs [Taiga #10112](https://tree.taiga.io/project/penpot/issue/10112) - Fix problem with alt key measures being stuck [Taiga #9348](https://tree.taiga.io/project/penpot/issue/9348) - Fix error when reseting stroke cap - Fix problem with strokes not refreshing in Safari [Taiga #9040](https://tree.taiga.io/project/penpot/issue/9040) diff --git a/docs/technical-guide/developer/frontend.md b/docs/technical-guide/developer/frontend.md index 129105976..cfd87ad79 100644 --- a/docs/technical-guide/developer/frontend.md +++ b/docs/technical-guide/developer/frontend.md @@ -319,14 +319,14 @@ cd penpot/frontend 3. Run the tests with yarn: ```bash -yarn e2e:test +yarn test:e2e ``` > 💡 **TIP:** By default, the tests will _not_ run in parallel. You can set the amount of workers to run the tests with --workers. Note that, depending on your machine, this might make some tests flaky. ```bash # run in parallel with 4 workers -yarn e2e:test --workers 4 +yarn test:e2e --workers 4 ``` #### Running the tests in Chromium