Skip to content

Commit 9c04665

Browse files
committed
Skip test for create project when quarto 1.5
This is while quarto-dev/quarto-cli#8809 is dealt with
1 parent 440cd86 commit 9c04665

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/testthat/test-create.R

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
test_that("Create a quarto project", {
22
skip_if_no_quarto("1.4")
3+
# TODO: Fix the test once issue solve upstream
4+
# - https://github.com/quarto-dev/quarto-cli/issues/8809
5+
# - https://github.com/quarto-dev/quarto-r/issues/153
6+
skip_if_quarto("1.5")
37
expect_snapshot(
48
error = TRUE,
59
quarto_create_project()
@@ -12,6 +16,10 @@ test_that("Create a quarto project", {
1216

1317
test_that("Create a quarto project in another directory", {
1418
skip_if_no_quarto("1.4")
19+
# TODO: Fix the test once issue solve upstream
20+
# - https://github.com/quarto-dev/quarto-cli/issues/8809
21+
# - https://github.com/quarto-dev/quarto-r/issues/153
22+
skip_if_quarto("1.5")
1523
tempdir <- withr::local_tempdir()
1624
curr_wd <- getwd()
1725
expect_no_error(quarto_create_project(name = "test-project", dir = tempdir, quiet = TRUE))

0 commit comments

Comments
 (0)