1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-01 10:52:24 +01:00

test: add json highlight test

This commit is contained in:
Michael
2020-10-04 15:14:46 +02:00
committed by David Peter
parent e747199711
commit 317b086f66
2 changed files with 58 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
[
{
"name": "john",
"age": 42,
"isCustomer": false,
"children": []
},
{
"name": "james",
"age": 35,
"isCustomer": true,
"children": [
{
"name": "linus",
"age": 4
},
{
"name": "sandra",
"age": 2
}
]
},
{
"name": "jessica",
"age": null,
"isCustomer": false,
"children": []
}
]