summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/JSONStream/test/issues.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/JSONStream/test/issues.js')
-rw-r--r--deps/npm/node_modules/JSONStream/test/issues.js34
1 files changed, 34 insertions, 0 deletions
diff --git a/deps/npm/node_modules/JSONStream/test/issues.js b/deps/npm/node_modules/JSONStream/test/issues.js
new file mode 100644
index 0000000000..ea4c74337a
--- /dev/null
+++ b/deps/npm/node_modules/JSONStream/test/issues.js
@@ -0,0 +1,34 @@
+var JSONStream = require('../');
+var test = require('tape')
+
+test('#66', function (t) {
+ var error = 0;
+ var stream = JSONStream
+ .parse()
+ .on('error', function (err) {
+ t.ok(err);
+ error++;
+ })
+ .on('end', function () {
+ t.ok(error === 1);
+ t.end();
+ });
+
+ stream.write('["foo":bar[');
+ stream.end();
+
+});
+
+test('#81 - failure to parse nested objects', function (t) {
+ var stream = JSONStream
+ .parse('.bar.foo')
+ .on('error', function (err) {
+ t.error(err);
+ })
+ .on('end', function () {
+ t.end();
+ });
+
+ stream.write('{"bar":{"foo":"baz"}}');
+ stream.end();
+});