Open IanButterworth opened 3 months ago
I would pretty much like it too, its quite annoying that the default printing doesn't show a lot of useful information for expressions that are a bit more than basic. For example
julia> @test 0 ≈ 1
Test Failed at REPL[4]:1
Expression: 0 ≈ 1
Evaluated: 0 ≈ 1
julia> a = zeros(100);
julia> b = ones(100);
julia> @test all(a .≈ b)
Test Failed at REPL[11]:1
Expression: all(a .≈ b)
Looks great, however the following doesn't show the evaluated values
Seems like the handling needs to be recursive.