Source file bonsai_bench.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
open! Core
open! Bonsai
module Test = Test
module Interaction = Interaction
include Interaction
let bench ?run_config ?analysis_configs ?display_config ?save_to_file ?libname tests =
tests
|> List.intersperse ~sep:Cleanup.invalidate_observers
|> Core_bench_js.bench
?run_config
?analysis_configs
?display_config
?save_to_file
?libname
;;