rcl/golden/json/set_to_array.test
Ruud van Asseldonk d0a8a52086 Convert json output to use the pretty-printer
This enables pretty json output, so I can actually read what is going on
without having to pipe the output through jq. I also have an idea to add
support for color to the pretty-printer, that can easily be enabled or
disabled at the config level.
2023-09-23 18:37:46 +02:00

6 lines
126 B
Text

// When exported to json, a set becomes a list.
// TODO: Preserve insertion order.
{"a", "c", "b"}
# output:
["a", "b", "c"]