No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
d5d0c58
... +0 ...
52624c9
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
45 | 45 | expect_snapshot_data <- function(x, name) { |
|
46 | 46 | testthat::skip_on_ci() |
|
47 | 47 | testthat::skip_on_os("windows") |
|
48 | + | fun <- function(x) signif(x, digits = 12) |
|
49 | + | x <- dplyr::mutate(x, dplyr::across(where(is.numeric), fun)) |
|
48 | 50 | path <- save_csv(x) |
|
49 | 51 | testthat::expect_snapshot_file(path, paste0(name, ".csv")) |
|
50 | 52 | } |
52624c9
d5d0c58