├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── run-tests.yaml ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── R ├── example-module.R └── example.R ├── README.md ├── app.R └── tests ├── shinytest.R ├── shinytest ├── mytest-expected │ ├── 001.json │ ├── 001.png │ ├── 002.json │ └── 002.png └── mytest.R ├── testthat.R └── testthat ├── test-examplemodule.R ├── test-server.R └── test-sort.R /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^LICENSE\.md$ 2 | ^\.github$ 3 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/run-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shiny-testing-gha-example/HEAD/.github/workflows/run-tests.yaml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shiny-testing-gha-example/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Barret Schloerke 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shiny-testing-gha-example/HEAD/LICENSE.md -------------------------------------------------------------------------------- /R/example-module.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shiny-testing-gha-example/HEAD/R/example-module.R -------------------------------------------------------------------------------- /R/example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shiny-testing-gha-example/HEAD/R/example.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shiny-testing-gha-example/HEAD/README.md -------------------------------------------------------------------------------- /app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shiny-testing-gha-example/HEAD/app.R -------------------------------------------------------------------------------- /tests/shinytest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shiny-testing-gha-example/HEAD/tests/shinytest.R -------------------------------------------------------------------------------- /tests/shinytest/mytest-expected/001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shiny-testing-gha-example/HEAD/tests/shinytest/mytest-expected/001.json -------------------------------------------------------------------------------- /tests/shinytest/mytest-expected/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shiny-testing-gha-example/HEAD/tests/shinytest/mytest-expected/001.png -------------------------------------------------------------------------------- /tests/shinytest/mytest-expected/002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shiny-testing-gha-example/HEAD/tests/shinytest/mytest-expected/002.json -------------------------------------------------------------------------------- /tests/shinytest/mytest-expected/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shiny-testing-gha-example/HEAD/tests/shinytest/mytest-expected/002.png -------------------------------------------------------------------------------- /tests/shinytest/mytest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shiny-testing-gha-example/HEAD/tests/shinytest/mytest.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shiny-testing-gha-example/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-examplemodule.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shiny-testing-gha-example/HEAD/tests/testthat/test-examplemodule.R -------------------------------------------------------------------------------- /tests/testthat/test-server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shiny-testing-gha-example/HEAD/tests/testthat/test-server.R -------------------------------------------------------------------------------- /tests/testthat/test-sort.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shiny-testing-gha-example/HEAD/tests/testthat/test-sort.R --------------------------------------------------------------------------------