scalatest-json icon indicating copy to clipboard operation
scalatest-json copied to clipboard

Compare ignoring nulls in circe.

Open stephennancekivell opened this issue 5 years ago • 0 comments

Consider the following.

Json did not match "{
  "a" : "01",
  "b" : null,
  "c" : "1"
}" did not match "{
 "a": "01",
 "c": "1"
 }"

Json Diff:
"[
  {
    "op" : "remove",
    "path" : "/b"
  }
]"

stephennancekivell avatar Jun 14 '19 01:06 stephennancekivell