assertThat((JsonNode)null, jsonArray(hasItem(jsonText("as"))));
assertThat((JsonNode)null, jsonArray(hasItems(jsonText("as"), jsonText("qw"))));
assertThat((JsonNode)null, jsonObject().where("key", jsonArray(hasItems(jsonText("as"), jsonText("qw")))));
I know it's been mentioned in #25 but it still seems impossible to use
hasItemandhasItemswithjsonArray:None of these will build