snapshot_accept()
accepts all modified snapshots.snapshot_reject()
rejects all modified snapshots by deleting the.new
variants.snapshot_review()
opens a Shiny app that shows a visual diff of each modified snapshot. This is particularly useful for whole file snapshots created byexpect_snapshot_file()
.
Usage
snapshot_accept(files = NULL, path = "tests/testthat")
snapshot_reject(files = NULL, path = "tests/testthat")
snapshot_review(files = NULL, path = "tests/testthat", ...)
Arguments
- files
Optionally, filter effects to snapshots from specified files. This can be a snapshot name (e.g.
foo
orfoo.md
), a snapshot file name (e.g.testfile/foo.txt
), or a snapshot file directory (e.g.testfile/
).- path
Path to tests.
- ...
Additional arguments passed on to
shiny::runApp()
.