From 68bb762e7f5ec560d8677e0ed4e0b2e2bce457e4 Mon Sep 17 00:00:00 2001 From: Schultheis Date: Mon, 17 Sep 2018 17:08:30 +0200 Subject: [PATCH] omit expect_silent until plotly orca can be used --- tests/testthat/test-download.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/testthat/test-download.R b/tests/testthat/test-download.R index f5f7dd4..df20091 100644 --- a/tests/testthat/test-download.R +++ b/tests/testthat/test-download.R @@ -22,7 +22,8 @@ test_that("plotly is downloadable", { filename <- "plot" expect_false(file.exists(file)) - expect_silent(download(file = file, filename = filename, plot = plot, width = width, height = height)) + # TODO change back to expect_silent as soon as orca can be used (no need for mapbox token) + download(file = file, filename = filename, plot = plot, width = width, height = height) expect_true(file.exists(file)) })