diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/badly_formatted.js | 4 | ||||
-rw-r--r-- | tests/badly_formatted_fixed.js | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/tests/badly_formatted.js b/tests/badly_formatted.js new file mode 100644 index 000000000..17e3e6be0 --- /dev/null +++ b/tests/badly_formatted.js @@ -0,0 +1,4 @@ + +console.log( + "Hello World" +) diff --git a/tests/badly_formatted_fixed.js b/tests/badly_formatted_fixed.js new file mode 100644 index 000000000..accefceba --- /dev/null +++ b/tests/badly_formatted_fixed.js @@ -0,0 +1 @@ +console.log("Hello World"); |