diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9935c8d..d3f4469 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,3 +50,6 @@ jobs: - name: Test run: make test + + - name: Coverage + run: make coverage diff --git a/Makefile b/Makefile index f0d1a23..bdff9ce 100644 --- a/Makefile +++ b/Makefile @@ -48,3 +48,14 @@ format-check: ## Checks if format is correct .PHONY: watch watch: ## Watch for the filesystem and rebuild on every change $(DUNE) build --watch + +.PHONY: test +test: ## Run tests + $(DUNE) test + +.PHONY: coverage +coverage: ## Generate coverage report in _coverage folder + $(DUNE) clean + BISECT_ENABLE=yes $(DUNE) build + $(DUNE) runtest + opam exec -- bisect-ppx-report html diff --git a/dom/test/DomTestingLibrary_test.re b/dom/test/DomTestingLibrary_test.re index c7a7a65..0a434b0 100644 --- a/dom/test/DomTestingLibrary_test.re +++ b/dom/test/DomTestingLibrary_test.re @@ -27,7 +27,7 @@ afterEach(() => } ); -afterAll(Bisect_melange.Runtime.write_coverage_data); +afterAll(Bisect.Runtime.write_coverage_data); describe("DomTestingLibrary", () => { open DomTestingLibrary; diff --git a/dune-project b/dune-project index 616ccc7..e747e26 100644 --- a/dune-project +++ b/dune-project @@ -21,12 +21,14 @@ (package (name melange-testing-library) - (synopsis "Melange bindings for testing-library (dom-testing-library and react-testing-library)") + (synopsis + "Melange bindings for testing-library (dom-testing-library and react-testing-library)") (depends ocaml (melange (>= "2.0.0")) reason-react + (melange-webapi :with-test) (melange-jest :with-test) (opam-check-npm-deps :with-test) ; todo: use with-dev-setup once opam 2.2 is out (bisect_ppx diff --git a/jest.config.js b/jest.config.js index 8d9e815..e2041f5 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,5 +1,8 @@ module.exports = { rootDir: "./_build/default/", testMatch: ["**/*_test.js"], + /* Ignoring these, as they are just temporary copies from runtime_deps, the final ones are in the + path created using the melange.emit target, e.g. _build/default/dom/test/test/dom/test/__snapshots__ */ + modulePathIgnorePatterns: ["react/test/__snapshots__", "dom/test/__snapshots__"] }; \ No newline at end of file diff --git a/melange-testing-library.opam b/melange-testing-library.opam index 14cf801..c2838ae 100644 --- a/melange-testing-library.opam +++ b/melange-testing-library.opam @@ -12,6 +12,7 @@ depends: [ "ocaml" "melange" {>= "2.0.0"} "reason-react" + "melange-webapi" {with-test} "melange-jest" {with-test} "opam-check-npm-deps" {with-test} "bisect_ppx" {with-test & >= "2.5.0"} @@ -38,5 +39,5 @@ depexts: [ ["@testing-library/dom"] {npm-version = "^7.26.3"} ] pin-depends: [ - [ "bisect_ppx.dev" "git+https://github.com/jchavarri/bisect_ppx.git#a0c2375ca20beceb55e53776e03812def3bc32ba" ] + [ "bisect_ppx.dev" "git+https://github.com/jchavarri/bisect_ppx.git#d169ba4a5a36a656dbae4734bb6375f2d48d68f1" ] ] diff --git a/melange-testing-library.opam.template b/melange-testing-library.opam.template index 02ba17f..2c5e81b 100644 --- a/melange-testing-library.opam.template +++ b/melange-testing-library.opam.template @@ -3,5 +3,5 @@ depexts: [ ["@testing-library/dom"] {npm-version = "^7.26.3"} ] pin-depends: [ - [ "bisect_ppx.dev" "git+https://github.com/jchavarri/bisect_ppx.git#a0c2375ca20beceb55e53776e03812def3bc32ba" ] + [ "bisect_ppx.dev" "git+https://github.com/jchavarri/bisect_ppx.git#d169ba4a5a36a656dbae4734bb6375f2d48d68f1" ] ] diff --git a/react/src/dune b/react/src/dune index 253dae4..f2d4113 100644 --- a/react/src/dune +++ b/react/src/dune @@ -5,4 +5,4 @@ (wrapped false) (modes melange) (preprocess - (pps melange.ppx))) + (pps bisect_ppx melange.ppx))) diff --git a/react/test/ReactTestingLibrary_test.re b/react/test/ReactTestingLibrary_test.re index a1cb5ee..dd46f06 100644 --- a/react/test/ReactTestingLibrary_test.re +++ b/react/test/ReactTestingLibrary_test.re @@ -2,7 +2,7 @@ open Jest; -afterAll(Bisect_melange.Runtime.write_coverage_data); +afterAll(Bisect.Runtime.write_coverage_data); module Greeting = { [@react.component]