Skip to content

Commit

Permalink
Always enable tests in compiler/tests-jsoo/lib-effects for OCaml 5
Browse files Browse the repository at this point in the history
  • Loading branch information
vouillon committed Nov 29, 2024
1 parent 0c7ebef commit dda322a
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions compiler/tests-jsoo/lib-effects/dune
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
(env
(using-effects)
(wasm)
(wasm-effects)
(_
(js_of_ocaml
(flags
(:standard --enable effects)))))

(library
(name jsoo_testsuite_effect)
(enabled_if
(and
(>= %{ocaml_version} 5)
(= %{profile} using-effects)))
(>= %{ocaml_version} 5))
(inline_tests
;; This requires the unreleased dune 3.7 to work
(enabled_if true)
(modes js best))
(preprocess
(pps ppx_expect)))

0 comments on commit dda322a

Please sign in to comment.