17 lines
345 B
Plaintext
17 lines
345 B
Plaintext
@@warning("-44")
|
|
module Topology = ReducerProject_Topology
|
|
|
|
open Jest
|
|
open Expect
|
|
open Expect.Operators
|
|
|
|
describe("Topology", () => {
|
|
Only.test("when equal 1x", () => {
|
|
Topology.runOrderDiff(["a"], ["a"])->expect == []
|
|
})
|
|
|
|
test("when equal 3x", () => {
|
|
Topology.runOrderDiff(["a", "b", "c"], ["a", "b", "c"])->expect == []
|
|
})
|
|
})
|