Run ExUnit Tests In A Deterministic Order
ExUnit.configure seed: 42
ExUnit.start
defmodule AssertionTest do
use ExUnit.Case, async: true
test "the truth" do
assert true
end
test "more truth" do
assert 2 + 2 = 4
end
endLast updated