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 1a4fd9d commit 32b626eCopy full SHA for 32b626e
tests/testthat/test-vdiffr.R
@@ -1,6 +1,11 @@
1
test_that("gghighlight() highlights correctly", {
2
testthat::skip_if_not_installed("vdiffr")
3
4
+ # no visual difference, but the SVG texts are incompatible after v4
5
+ skip_if_not(
6
+ utils::packageVersion("ggplot2") > "3.5.2.9000",
7
+ )
8
+
9
vdiffr::expect_doppelganger(
10
"simple bar chart",
11
ggplot(mpg, aes(class, fill = factor(cyl))) +
0 commit comments