FestBindings for functions from node:test and node:assert/strict modules
Create a test with a given name and callback function that runs the test
module Promise : sig ... endThis promise-based module is needed for nested tests, see https://nodejs.org/api/test.html#subtests
Abstract type for the node:assert/strict module
val expect : assertionThe node:assert/strict module object
val ok : bool -> assertion -> unitTests if the given value is true
val equal : 'a -> 'a -> assertion -> unitTests strict equality between the actual and expected parameters as determined by Object.is()
val deep_equal : 'a -> 'a -> assertion -> unitTests for deep strict equality between the actual and expected parameters
val deepEqual : 'a -> 'a -> assertion -> unitAlias for deep_equal