ligo/src/test/test.ml
2019-11-21 17:21:39 +01:00

18 lines
357 B
OCaml

(* -*- compile-command: "cd .. ; dune runtest" -*- *)
open Test_helpers
let () =
Printexc.record_backtrace true ;
run_test @@ test_suite "LIGO" [
Integration_tests.main ;
Transpiler_tests.main ;
Typer_tests.main ;
Heap_tests.main ;
Coase_tests.main ;
Vote_tests.main ;
Multisig_tests.main ;
Bin_tests.main ;
] ;
()