R Under development (unstable) (2025-07-29 r88464 ucrt) -- "Unsuffered Consequences" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > library(testthat) > library(connectapi) > > progress_reporter <- ProgressReporter$new(max_failures = 1000) > check_reporter <- CheckReporter$new(file = fs::path("check-results-check.txt")) > > reporter_list <- list(progress_reporter, check_reporter) > > if (as.logical(Sys.getenv("IS_JENKINS", "FALSE"))) { + junit_reporter <- JunitReporter$new( + file = fs::path("check-results-junit.xml") + ) + reporter_list <- c(reporter_list, list(junit_reporter)) + } > multi_reporter <- MultiReporter$new(reporters = reporter_list) > > test_check("connectapi", reporter = multi_reporter) ✔ | F W S OK | Context ⠏ | 0 | audit ⠋ | 1 | audit ⠹ | 3 | audit ⠴ | 6 | audit ✔ | 10 | audit [1.3s] ⠏ | 0 | bundle ⠼ | 5 | bundle ✔ | 6 | bundle ⠏ | 0 | connect ⠏ | 1 9 | connect ⠧ | 1 17 | connect ⠏ | 1 19 | connect ⠼ | 1 24 | connect ⠹ | 1 32 | connect ✔ | 1 34 | connect ⠏ | 0 | content ⠹ | 13 | content ⠇ | 1 18 | content ⠹ | 1 22 | content ⠏ | 1 29 | content ⠦ | 1 36 | content ⠹ | 1 42 | content ⠴ | 1 45 | content ⠸ | 1 53 | content ⠦ | 1 56 | content ⠏ | 1 59 | content ✔ | 1 61 | content [1.4s] ⠏ | 0 | env-vars ⠴ | 6 | env-vars ✔ | 8 | env-vars ⠏ | 0 | get ⠹ | 3 | get ⠇ | 9 | get ⠹ | 13 | get ⠼ | 15 | get ⠦ | 17 | get ⠙ | 22 | get ✔ | 25 | get ⠏ | 0 | git ✔ | 4 | git ⠏ | 0 | groups ⠼ | 5 | groups ⠧ | 8 | groups ⠙ | 12 | groups ⠹ | 1 12 | groups ✔ | 2 12 | groups ⠏ | 0 | instrumentation ⠴ | 6 | instrumentation ⠸ | 14 | instrumentation ✔ | 16 | instrumentation ⠏ | 0 | integrations ⠦ | 7 | integrations ✔ | 7 | integrations ⠏ | 0 | oauth ⠦ | 7 | oauth ⠸ | 14 | oauth ⠋ | 21 | oauth ⠇ | 29 | oauth ✔ | 29 | oauth ⠏ | 0 | parse ⠹ | 23 | parse ⠹ | 43 | parse ⠋ | 61 | parse ✔ | 1 74 | parse ⠏ | 0 | print ✔ | 1 0 | print ⠏ | 0 | remote ⠦ | 7 | remote ⠙ | 12 | remote ⠦ | 17 | remote ✔ | 18 | remote ⠏ | 0 | runtime-caches ⠹ | 3 | runtime-caches ✔ | 6 | runtime-caches ⠏ | 0 | schedule ✔ | 6 | schedule ⠏ | 0 | tags ⠙ | 1 21 | tags ✔ | 1 33 | tags ⠏ | 0 | task ✔ | 1 | task ⠏ | 0 | thumbnail ⠹ | 3 | thumbnail ⠏ | 10 | thumbnail ⠼ | 15 | thumbnail ⠇ | 19 | thumbnail ⠙ | 22 | thumbnail ⠏ | 30 | thumbnail ⠼ | 35 | thumbnail ⠏ | 40 | thumbnail ✔ | 40 | thumbnail ⠏ | 0 | users ⠼ | 5 | users ✔ | 8 | users ⠏ | 0 | utils ✔ | 1 17 | utils ⠏ | 0 | vanity ⠙ | 2 | vanity ✔ | 2 | vanity ⠏ | 0 | variant ⠏ | 10 | variant ✔ | 10 | variant ══ Results ═════════════════════════════════════════════════════════════════════ Duration: 9.2 s ── Skipped tests (8) ─────────────────────────────────────────────────────────── • Ahh! this fails presently. Are double -> POSIXct conversions allowed? (1): 'test-parse.R:294:3' • On CRAN (5): 'test-content.R:51:5', 'test-groups.R:114:5', 'test-groups.R:120:5', 'test-print.R:16:3', 'test-utils.R:59:3' • not implemented yet (1): 'test-connect.R:33:3' • not tested yet (1): 'test-tags.R:40:3' [ FAIL 0 | WARN 0 | SKIP 8 | PASS 427 ] > > proc.time() user system elapsed 8.90 1.35 10.26