https://github.com/mjfrigaard/dbap
Shiny application to demo unit tests, testServer(), and browse() (RStudio's debugger)
https://github.com/mjfrigaard/dbap
Last synced: 3 months ago
JSON representation
Shiny application to demo unit tests, testServer(), and browse() (RStudio's debugger)
- Host: GitHub
- URL: https://github.com/mjfrigaard/dbap
- Owner: mjfrigaard
- License: other
- Created: 2023-05-30T03:07:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-04T21:00:06.000Z (over 1 year ago)
- Last Synced: 2024-08-13T07:11:07.997Z (6 months ago)
- Language: R
- Size: 172 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - mjfrigaard/dbap - Shiny application to demo unit tests, testServer(), and browse() (RStudio's debugger) (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# `dbap`
The goal of `dbap` is to demonstrate debugging functions within a shiny application package using [`testthat`](https://testthat.r-lib.org/), [`shiny::testServer()`](https://search.r-project.org/CRAN/refmans/shiny/html/testServer.html), and RStudio's debugger. Check out [this blog post](https://mjfrigaard.github.io/posts/debugging/) for more information.
## Installation
``` r
install.packages("remotes")
remotes::install_github("mjfrigaard/dbap")
```The examples for this package are contained in the vignettes.