Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/schloerke/shinyjster
Run javascript testing which will autokill an app on successful testing
https://github.com/schloerke/shinyjster
Last synced: about 2 months ago
JSON representation
Run javascript testing which will autokill an app on successful testing
- Host: GitHub
- URL: https://github.com/schloerke/shinyjster
- Owner: schloerke
- License: other
- Created: 2019-10-04T13:47:02.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-02-23T19:20:01.000Z (10 months ago)
- Last Synced: 2024-08-09T02:17:14.430Z (4 months ago)
- Language: JavaScript
- Homepage: http://schloerke.com/shinyjster/
- Size: 99.5 MB
- Stars: 11
- Watchers: 4
- Forks: 0
- Open Issues: 24
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - schloerke/shinyjster - Run javascript testing which will autokill an app on successful testing (JavaScript)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# shinyjster
[![R build
status](https://github.com/schloerke/shinyjster/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/schloerke/shinyjster/actions)Run JavaScript testing on Shiny applications. On successful testing, 'shinyjster' will auto-kill the Shiny application on a successful test to speed up manual testing.
## Installation
You can install ~~the released version of shinyjster from [CRAN](https://CRAN.R-project.org) with:~~
``` r
## Currently not on CRAN
# install.packages("shinyjster")
```~~And~~ the development version from [GitHub](https://github.com/) with:
``` r
# install.packages("pak")
pak::pkg_install("schloerke/shinyjster")
```
## ExampleThis is a basic example which shows you how to solve a common problem:
```{r example, eval = FALSE}
library(shinyjster)
## basic example code
app_dir <- system.file("shinyjster/01-hello", package = "shinyjster")
run_jster(app_dir)
```