Skip to content

Commit

Permalink
omit expect_silent until plotly orca can be used
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikSchultheis committed Sep 17, 2018
1 parent 2d98c7e commit 68bb762
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/testthat/test-download.R
Original file line number Diff line number Diff line change
Expand Up @@ -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))
})

Expand Down

0 comments on commit 68bb762

Please sign in to comment.