diff --git a/tests/syntax-tests/highlighted/JSON/test.json b/tests/syntax-tests/highlighted/JSON/test.json new file mode 100644 index 00000000..76b859d0 --- /dev/null +++ b/tests/syntax-tests/highlighted/JSON/test.json @@ -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": [] + } +] diff --git a/tests/syntax-tests/source/JSON/test.json b/tests/syntax-tests/source/JSON/test.json new file mode 100644 index 00000000..0c651d59 --- /dev/null +++ b/tests/syntax-tests/source/JSON/test.json @@ -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": [] + } +] \ No newline at end of file