We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ac6a0d commit d633adbCopy full SHA for d633adb
tests/testthat/test-ggplot-device.R
@@ -2,7 +2,7 @@ context("device")
2
3
test_that("ggplotly doesn't leave a new device open", {
4
devList1 <- dev.list()
5
- p <- ggplotly(qplot(1:10))
+ p <- ggplotly(ggplot(mtcars) + geom_point(aes(wt, mpg)))
6
devList2 <- dev.list()
7
expect_true(length(devList1) == length(devList2))
8
})
0 commit comments