Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-08-19Adjust classes for cypress testsJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2022-07-26Replace files app DOM id with classVincent Petry
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2022-07-19♿️ (#2381): make placeholder accessible by keyboard navigationVinicius Reis
Allows to keyboard focus on placeholder and create a new workspace using enter and space keys. Signed-off-by: Vinicius Reis <vinicius.reis@nextcloud.com>
2022-07-05fix: take retry into account for test foldersMax
Signed-off-by: Max <max@nextcloud.com>
2022-06-30Clean up cypress testsFerdinand Thiessen
1. Clean up lint issues of the cypress tests 2. Fix placed where .find was intended but .get was used 3. Remove duplicated code 4. Remove residues of cypress 10 migration 5. Add some documentation on available commands Signed-off-by: Ferdinand Thiessen <rpm@fthiessen.de>
2022-06-08fix: return promise in cypress command to wait for itMax
Tests were failing because cypress proceeded with adding files to a folder that had not been created yet: https://github.com/nextcloud/text/runs/6780248454?check_suite_focus=true Do not create the callout test directory twice. Nested cypress blocks will execute `beforeEach` on all levels. Signed-off-by: Max <max@nextcloud.com>
2022-06-05Fix cypress scripts for local run + Add documentationFerdinand Thiessen
Fix the scripts for local cypress runs, they need to be run within the `npm run` environment, as the nextcloud webpack config requires the `npm_package_name` variable to be set. Also a up-to-date nextcloud instance is required for testing text at the current git head, so updated the dockerfile and docker-compose files to create a nextcloud image from current git head. Additionally updated the tests to use cypress 10.x and added missing documentation on how to run the cypress tests. Signed-off-by: Ferdinand Thiessen <rpm@fthiessen.de>