From e2e61234e84e5a55584996f3a53e952ee5d31f81 Mon Sep 17 00:00:00 2001 From: Gigi Kenneth Date: Tue, 5 Mar 2024 09:44:18 +0100 Subject: [PATCH] updated with shinytest2 link --- .../rhino_shiny_app_validation.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/2024-03-01_rhino_shiny_app_validation/rhino_shiny_app_validation.qmd b/posts/2024-03-01_rhino_shiny_app_validation/rhino_shiny_app_validation.qmd index 567cb488..7940781f 100644 --- a/posts/2024-03-01_rhino_shiny_app_validation/rhino_shiny_app_validation.qmd +++ b/posts/2024-03-01_rhino_shiny_app_validation/rhino_shiny_app_validation.qmd @@ -48,7 +48,7 @@ When you first run `rhino::init()` inside your project's root directory, [Rhino] Rhino comes with [testthat](https://testthat.r-lib.org/) installed and introduces the `tests/` directory in your project. As part of the validation process, you want to test your requirements. With Rhino, all you need to do is create your test-\*.R files in tests/testthat directory and run [`rhino::test_r()`](https://appsilon.github.io/rhino/reference/init.html). -Although shinytest2 tests can also be added with minimal effort ([How to use shinytest2](https://appsilon.github.io/rhino/articles/how-to/use-shinytest2.html)), one of the distinct features of Rhino is the ability to write end-to-end tests with Cypress out of the box. To learn more about how to write Cypress tests via Rhino, you can read more on [Write end-to-end tests with Cypress tutorial](https://appsilon.github.io/rhino/articles/tutorial/write-end-to-end-tests-with-cypress.html) in the documentation. +Although [shinytest2](https://rstudio.github.io/shinytest2/) tests can also be added with minimal effort ([How to use shinytest2](https://appsilon.github.io/rhino/articles/how-to/use-shinytest2.html)), one of the distinct features of Rhino is the ability to write end-to-end tests with Cypress out of the box. To learn more about how to write Cypress tests via Rhino, you can read more on [Write end-to-end tests with Cypress tutorial](https://appsilon.github.io/rhino/articles/tutorial/write-end-to-end-tests-with-cypress.html) in the documentation. #### Continuous Integration via GitHub