sprockets-browserify 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +70 -0
- data/Rakefile +38 -0
- data/lib/sprockets/browserify/engine.rb +15 -0
- data/lib/sprockets/browserify.rb +37 -0
- data/lib/sprockets-browserify.rb +2 -0
- data/lib/tasks/sprockets-browserify_tasks.rake +4 -0
- data/node_modules/JSONStream/LICENSE.APACHE2 +15 -0
- data/node_modules/JSONStream/LICENSE.MIT +24 -0
- data/node_modules/JSONStream/examples/all_docs.js +13 -0
- data/node_modules/JSONStream/index.js +189 -0
- data/node_modules/JSONStream/node_modules/jsonparse/LICENSE +24 -0
- data/node_modules/JSONStream/node_modules/jsonparse/README.markdown +11 -0
- data/node_modules/JSONStream/node_modules/jsonparse/bench.js +26 -0
- data/node_modules/JSONStream/node_modules/jsonparse/examples/twitterfeed.js +30 -0
- data/node_modules/JSONStream/node_modules/jsonparse/jsonparse.js +379 -0
- data/node_modules/JSONStream/node_modules/jsonparse/package.json +34 -0
- data/node_modules/JSONStream/node_modules/jsonparse/samplejson/basic.json +167 -0
- data/node_modules/JSONStream/node_modules/jsonparse/samplejson/basic2.json +180 -0
- data/node_modules/JSONStream/node_modules/jsonparse/test/primitives.js +54 -0
- data/node_modules/JSONStream/node_modules/jsonparse/test/utf8.js +38 -0
- data/node_modules/JSONStream/package.json +38 -0
- data/node_modules/JSONStream/readme.markdown +145 -0
- data/node_modules/JSONStream/test/bool.js +41 -0
- data/node_modules/JSONStream/test/destroy_missing.js +22 -0
- data/node_modules/JSONStream/test/empty.js +44 -0
- data/node_modules/JSONStream/test/fixtures/all_npm.json +4030 -0
- data/node_modules/JSONStream/test/fn.js +39 -0
- data/node_modules/JSONStream/test/memory.js +69 -0
- data/node_modules/JSONStream/test/multiple_objects.js +42 -0
- data/node_modules/JSONStream/test/multiple_objects_error.js +35 -0
- data/node_modules/JSONStream/test/parsejson.js +28 -0
- data/node_modules/JSONStream/test/stringify.js +41 -0
- data/node_modules/JSONStream/test/stringify_object.js +47 -0
- data/node_modules/JSONStream/test/test.js +35 -0
- data/node_modules/JSONStream/test/test2.js +29 -0
- data/node_modules/JSONStream/test/two-ways.js +41 -0
- data/node_modules/browserify/LICENSE +63 -0
- data/node_modules/browserify/README.markdown +172 -0
- data/node_modules/browserify/bin/cmd.js +161 -0
- data/node_modules/browserify/builtins/__browserify_process.js +55 -0
- data/node_modules/browserify/builtins/assert.js +314 -0
- data/node_modules/browserify/builtins/child_process.js +2 -0
- data/node_modules/browserify/builtins/events.js +178 -0
- data/node_modules/browserify/builtins/fs.js +1 -0
- data/node_modules/browserify/builtins/https.js +1 -0
- data/node_modules/browserify/builtins/net.js +1 -0
- data/node_modules/browserify/builtins/path.js +175 -0
- data/node_modules/browserify/builtins/querystring.js +250 -0
- data/node_modules/browserify/builtins/stream.js +119 -0
- data/node_modules/browserify/builtins/string_decoder.js +161 -0
- data/node_modules/browserify/builtins/sys.js +1 -0
- data/node_modules/browserify/builtins/timers.js +39 -0
- data/node_modules/browserify/builtins/tls.js +1 -0
- data/node_modules/browserify/builtins/tty.js +2 -0
- data/node_modules/browserify/builtins/url.js +604 -0
- data/node_modules/browserify/builtins/util.js +351 -0
- data/node_modules/browserify/doc/methods.markdown +182 -0
- data/node_modules/browserify/doc/recipes.markdown +62 -0
- data/node_modules/browserify/example/debug/browserify.js +219 -0
- data/node_modules/browserify/example/debug/build.sh +3 -0
- data/node_modules/browserify/example/debug/index.html +7 -0
- data/node_modules/browserify/example/debug/js/entry.js +2 -0
- data/node_modules/browserify/example/debug/js/thrower.js +3 -0
- data/node_modules/browserify/example/debug/server.js +9 -0
- data/node_modules/browserify/example/simple-build/browserify.js +368 -0
- data/node_modules/browserify/example/simple-build/build.sh +3 -0
- data/node_modules/browserify/example/simple-build/index.html +9 -0
- data/node_modules/browserify/example/simple-build/js/bar.js +3 -0
- data/node_modules/browserify/example/simple-build/js/entry.js +5 -0
- data/node_modules/browserify/example/simple-build/js/foo.js +5 -0
- data/node_modules/browserify/example/simple-build/server.js +9 -0
- data/node_modules/browserify/example/test/b.js +5 -0
- data/node_modules/browserify/example/test/bar.js +3 -0
- data/node_modules/browserify/example/test/foo.js +3 -0
- data/node_modules/browserify/example/test/m.js +3 -0
- data/node_modules/browserify/example/test/n.js +3 -0
- data/node_modules/browserify/example/using-http/bundle.js +813 -0
- data/node_modules/browserify/example/using-http/entry.js +25 -0
- data/node_modules/browserify/example/using-http/index.html +9 -0
- data/node_modules/browserify/example/using-http/server.js +28 -0
- data/node_modules/browserify/index.js +202 -0
- data/node_modules/browserify/lib/watch.js +75 -0
- data/node_modules/browserify/lib/wrap.js +583 -0
- data/node_modules/browserify/lib/wrappers.js +10 -0
- data/node_modules/browserify/node_modules/buffer-browserify/README.md +11 -0
- data/node_modules/browserify/node_modules/buffer-browserify/buffer_ieee754.js +84 -0
- data/node_modules/browserify/node_modules/buffer-browserify/index.js +1317 -0
- data/node_modules/browserify/node_modules/buffer-browserify/node_modules/base64-js/README.md +14 -0
- data/node_modules/browserify/node_modules/buffer-browserify/node_modules/base64-js/lib/b64.js +84 -0
- data/node_modules/browserify/node_modules/buffer-browserify/node_modules/base64-js/package.json +26 -0
- data/node_modules/browserify/node_modules/buffer-browserify/node_modules/base64-js/test/runner.js +50 -0
- data/node_modules/browserify/node_modules/buffer-browserify/package.json +42 -0
- data/node_modules/browserify/node_modules/buffer-browserify/test/buffer.js +218 -0
- data/node_modules/browserify/node_modules/coffee-script/CNAME +1 -0
- data/node_modules/browserify/node_modules/coffee-script/CONTRIBUTING.md +9 -0
- data/node_modules/browserify/node_modules/coffee-script/LICENSE +22 -0
- data/node_modules/browserify/node_modules/coffee-script/README +51 -0
- data/node_modules/browserify/node_modules/coffee-script/Rakefile +79 -0
- data/node_modules/browserify/node_modules/coffee-script/bin/cake +7 -0
- data/node_modules/browserify/node_modules/coffee-script/bin/coffee +7 -0
- data/node_modules/browserify/node_modules/coffee-script/extras/jsl.conf +44 -0
- data/node_modules/browserify/node_modules/coffee-script/lib/coffee-script/browser.js +101 -0
- data/node_modules/browserify/node_modules/coffee-script/lib/coffee-script/cake.js +113 -0
- data/node_modules/browserify/node_modules/coffee-script/lib/coffee-script/coffee-script.js +218 -0
- data/node_modules/browserify/node_modules/coffee-script/lib/coffee-script/command.js +506 -0
- data/node_modules/browserify/node_modules/coffee-script/lib/coffee-script/grammar.js +623 -0
- data/node_modules/browserify/node_modules/coffee-script/lib/coffee-script/helpers.js +150 -0
- data/node_modules/browserify/node_modules/coffee-script/lib/coffee-script/index.js +11 -0
- data/node_modules/browserify/node_modules/coffee-script/lib/coffee-script/lexer.js +905 -0
- data/node_modules/browserify/node_modules/coffee-script/lib/coffee-script/nodes.js +3088 -0
- data/node_modules/browserify/node_modules/coffee-script/lib/coffee-script/optparse.js +138 -0
- data/node_modules/browserify/node_modules/coffee-script/lib/coffee-script/parser.js +608 -0
- data/node_modules/browserify/node_modules/coffee-script/lib/coffee-script/repl.js +104 -0
- data/node_modules/browserify/node_modules/coffee-script/lib/coffee-script/rewriter.js +478 -0
- data/node_modules/browserify/node_modules/coffee-script/lib/coffee-script/scope.js +147 -0
- data/node_modules/browserify/node_modules/coffee-script/lib/coffee-script/sourcemap.js +237 -0
- data/node_modules/browserify/node_modules/coffee-script/package.json +48 -0
- data/node_modules/browserify/node_modules/commondir/README.markdown +45 -0
- data/node_modules/browserify/node_modules/commondir/example/base.js +3 -0
- data/node_modules/browserify/node_modules/commondir/example/dir.js +3 -0
- data/node_modules/browserify/node_modules/commondir/index.js +29 -0
- data/node_modules/browserify/node_modules/commondir/package.json +43 -0
- data/node_modules/browserify/node_modules/commondir/test/dirs.js +66 -0
- data/node_modules/browserify/node_modules/console-browserify/LICENCE +19 -0
- data/node_modules/browserify/node_modules/console-browserify/README.md +32 -0
- data/node_modules/browserify/node_modules/console-browserify/index.js +85 -0
- data/node_modules/browserify/node_modules/console-browserify/package.json +76 -0
- data/node_modules/browserify/node_modules/console-browserify/test/index.js +67 -0
- data/node_modules/browserify/node_modules/console-browserify/test/static/index.html +12 -0
- data/node_modules/browserify/node_modules/console-browserify/test/static/test-adapter.js +53 -0
- data/node_modules/browserify/node_modules/crypto-browserify/example/bundle.js +637 -0
- data/node_modules/browserify/node_modules/crypto-browserify/example/index.html +12 -0
- data/node_modules/browserify/node_modules/crypto-browserify/example/test.js +4 -0
- data/node_modules/browserify/node_modules/crypto-browserify/index.js +74 -0
- data/node_modules/browserify/node_modules/crypto-browserify/md5.js +384 -0
- data/node_modules/browserify/node_modules/crypto-browserify/package.json +30 -0
- data/node_modules/browserify/node_modules/crypto-browserify/readme.markdown +20 -0
- data/node_modules/browserify/node_modules/crypto-browserify/rng.js +37 -0
- data/node_modules/browserify/node_modules/crypto-browserify/sha.js +210 -0
- data/node_modules/browserify/node_modules/crypto-browserify/test/simple.js +35 -0
- data/node_modules/browserify/node_modules/deputy/README.markdown +55 -0
- data/node_modules/browserify/node_modules/deputy/example/cache.js +5 -0
- data/node_modules/browserify/node_modules/deputy/index.js +46 -0
- data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/LICENSE +21 -0
- data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/examples/pow.js +6 -0
- data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/index.js +82 -0
- data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/package.json +30 -0
- data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/readme.markdown +63 -0
- data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/chmod.js +38 -0
- data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/clobber.js +37 -0
- data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/mkdirp.js +28 -0
- data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/perm.js +32 -0
- data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/perm_sync.js +39 -0
- data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/race.js +41 -0
- data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/rel.js +32 -0
- data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/return.js +25 -0
- data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/return_sync.js +24 -0
- data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/root.js +18 -0
- data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/sync.js +32 -0
- data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/umask.js +28 -0
- data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/umask_sync.js +32 -0
- data/node_modules/browserify/node_modules/deputy/package.json +43 -0
- data/node_modules/browserify/node_modules/deputy/test/cache.js +58 -0
- data/node_modules/browserify/node_modules/detective/README.markdown +66 -0
- data/node_modules/browserify/node_modules/detective/example/strings.js +6 -0
- data/node_modules/browserify/node_modules/detective/example/strings_src.js +3 -0
- data/node_modules/browserify/node_modules/detective/index.js +60 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/LICENSE.BSD +19 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/README.md +74 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/assets/codemirror/codemirror.css +112 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/assets/codemirror/codemirror.js +2972 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/assets/codemirror/javascript.js +360 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/assets/json2.js +487 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/assets/style.css +164 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/assets/yui/treeview-min.js +12 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/assets/yui/treeview-sprite.gif +0 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/assets/yui/treeview.css +7 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/assets/yui/yahoo-dom-event.js +14 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/bin/esparse.js +42 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/changes +92 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/cm +696 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/checkenv.js +42 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/collector.html +82 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/collector.js +170 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/functiontrace.html +106 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/functiontrace.js +123 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/parse.css +82 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/parse.html +352 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/precedence.html +225 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/rewrite.html +120 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/rewrite.js +71 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/esprima.js +3577 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/index.html +103 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/package.json +39 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/Tokenizer.js +646 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/XMLHttpRequest.js +509 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/ZeParser.js +2185 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/backbone-0.5.3.js +1158 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/benchmark.js +3261 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/escodegen.js +906 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/esmorph.js +240 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/ext-core-3.0.0.js +6579 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/ext-core-3.1.0.js +10255 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/jquery-1.6.4.js +9046 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/jquery-1.7.1.js +9266 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/jquery.mobile-1.0.js +6951 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/jsdefs.js +731 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/jslex.js +588 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/jsparse.js +1921 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/mootools-1.3.2.js +5952 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/mootools-1.4.1.js +6297 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/parse-js.js +1342 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/platform.js +878 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/prototype-1.6.1.js +4874 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/prototype-1.7.0.0.js +6082 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/underscore-1.2.3.js +981 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/benchmarks.html +58 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/benchmarks.js +328 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/compare.html +140 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/compare.js +270 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/compat.html +40 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/compat.js +239 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/coverage.footer.html +3 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/coverage.header.html +37 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/coverage.html +3617 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/index.html +36 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/reflect.js +403 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/run.js +66 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/test.js +16659 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/tools/generate-unicode-regex.py +164 -0
- data/node_modules/browserify/node_modules/detective/node_modules/esprima/tools/update-coverage.sh +28 -0
- data/node_modules/browserify/node_modules/detective/package.json +43 -0
- data/node_modules/browserify/node_modules/detective/test/both.js +11 -0
- data/node_modules/browserify/node_modules/detective/test/chained.js +9 -0
- data/node_modules/browserify/node_modules/detective/test/files/both.js +4 -0
- data/node_modules/browserify/node_modules/detective/test/files/chained.js +5 -0
- data/node_modules/browserify/node_modules/detective/test/files/nested.js +22 -0
- data/node_modules/browserify/node_modules/detective/test/files/skip.js +7 -0
- data/node_modules/browserify/node_modules/detective/test/files/strings.js +13 -0
- data/node_modules/browserify/node_modules/detective/test/files/word.js +13 -0
- data/node_modules/browserify/node_modules/detective/test/nested.js +9 -0
- data/node_modules/browserify/node_modules/detective/test/skip.js +9 -0
- data/node_modules/browserify/node_modules/detective/test/strings.js +9 -0
- data/node_modules/browserify/node_modules/detective/test/word.js +12 -0
- data/node_modules/browserify/node_modules/http-browserify/example/get/index.html +9 -0
- data/node_modules/browserify/node_modules/http-browserify/example/get/main.js +14 -0
- data/node_modules/browserify/node_modules/http-browserify/example/get/server.js +12 -0
- data/node_modules/browserify/node_modules/http-browserify/example/headers/index.html +9 -0
- data/node_modules/browserify/node_modules/http-browserify/example/headers/main.js +18 -0
- data/node_modules/browserify/node_modules/http-browserify/example/headers/server.js +15 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/data.json +139 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/index.html +9 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/main.js +13 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/LICENSE.APACHE2 +15 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/LICENSE.MIT +24 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/examples/all_docs.js +13 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/index.js +189 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/LICENSE +24 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/README.markdown +11 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/bench.js +26 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/examples/twitterfeed.js +30 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/jsonparse.js +379 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/package.json +36 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/samplejson/basic.json +167 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/samplejson/basic2.json +180 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/test/primitives.js +54 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/test/utf8.js +38 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/package.json +40 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/readme.markdown +145 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/bool.js +41 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/destroy_missing.js +22 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/empty.js +44 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/fixtures/all_npm.json +4030 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/fn.js +39 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/memory.js +69 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/multiple_objects.js +42 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/multiple_objects_error.js +35 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/parsejson.js +28 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/stringify.js +41 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/stringify_object.js +47 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/test.js +35 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/test2.js +29 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/two-ways.js +41 -0
- data/node_modules/browserify/node_modules/http-browserify/example/json-stream/server.js +10 -0
- data/node_modules/browserify/node_modules/http-browserify/example/post/index.html +9 -0
- data/node_modules/browserify/node_modules/http-browserify/example/post/main.js +16 -0
- data/node_modules/browserify/node_modules/http-browserify/example/post/server.js +19 -0
- data/node_modules/browserify/node_modules/http-browserify/example/streaming/index.html +9 -0
- data/node_modules/browserify/node_modules/http-browserify/example/streaming/main.js +16 -0
- data/node_modules/browserify/node_modules/http-browserify/example/streaming/server.js +21 -0
- data/node_modules/browserify/node_modules/http-browserify/index.js +60 -0
- data/node_modules/browserify/node_modules/http-browserify/lib/request.js +128 -0
- data/node_modules/browserify/node_modules/http-browserify/lib/response.js +119 -0
- data/node_modules/browserify/node_modules/http-browserify/node_modules/concat-stream/index.js +48 -0
- data/node_modules/browserify/node_modules/http-browserify/node_modules/concat-stream/package.json +29 -0
- data/node_modules/browserify/node_modules/http-browserify/node_modules/concat-stream/readme.md +31 -0
- data/node_modules/browserify/node_modules/http-browserify/node_modules/concat-stream/test.js +34 -0
- data/node_modules/browserify/node_modules/http-browserify/package.json +42 -0
- data/node_modules/browserify/node_modules/http-browserify/readme.markdown +128 -0
- data/node_modules/browserify/node_modules/nub/README.markdown +23 -0
- data/node_modules/browserify/node_modules/nub/index.js +64 -0
- data/node_modules/browserify/node_modules/nub/package.json +42 -0
- data/node_modules/browserify/node_modules/nub/test/by.js +51 -0
- data/node_modules/browserify/node_modules/nub/test/nub.js +46 -0
- data/node_modules/browserify/node_modules/optimist/LICENSE +21 -0
- data/node_modules/browserify/node_modules/optimist/README.markdown +487 -0
- data/node_modules/browserify/node_modules/optimist/example/bool.js +10 -0
- data/node_modules/browserify/node_modules/optimist/example/boolean_double.js +7 -0
- data/node_modules/browserify/node_modules/optimist/example/boolean_single.js +7 -0
- data/node_modules/browserify/node_modules/optimist/example/default_hash.js +8 -0
- data/node_modules/browserify/node_modules/optimist/example/default_singles.js +7 -0
- data/node_modules/browserify/node_modules/optimist/example/divide.js +8 -0
- data/node_modules/browserify/node_modules/optimist/example/line_count.js +20 -0
- data/node_modules/browserify/node_modules/optimist/example/line_count_options.js +29 -0
- data/node_modules/browserify/node_modules/optimist/example/line_count_wrap.js +29 -0
- data/node_modules/browserify/node_modules/optimist/example/nonopt.js +4 -0
- data/node_modules/browserify/node_modules/optimist/example/reflect.js +2 -0
- data/node_modules/browserify/node_modules/optimist/example/short.js +3 -0
- data/node_modules/browserify/node_modules/optimist/example/string.js +11 -0
- data/node_modules/browserify/node_modules/optimist/example/usage-options.js +19 -0
- data/node_modules/browserify/node_modules/optimist/example/xup.js +10 -0
- data/node_modules/browserify/node_modules/optimist/index.js +475 -0
- data/node_modules/browserify/node_modules/optimist/node_modules/wordwrap/README.markdown +70 -0
- data/node_modules/browserify/node_modules/optimist/node_modules/wordwrap/example/center.js +10 -0
- data/node_modules/browserify/node_modules/optimist/node_modules/wordwrap/example/meat.js +3 -0
- data/node_modules/browserify/node_modules/optimist/node_modules/wordwrap/index.js +76 -0
- data/node_modules/browserify/node_modules/optimist/node_modules/wordwrap/package.json +41 -0
- data/node_modules/browserify/node_modules/optimist/node_modules/wordwrap/test/break.js +30 -0
- data/node_modules/browserify/node_modules/optimist/node_modules/wordwrap/test/idleness.txt +63 -0
- data/node_modules/browserify/node_modules/optimist/node_modules/wordwrap/test/wrap.js +31 -0
- data/node_modules/browserify/node_modules/optimist/package.json +47 -0
- data/node_modules/browserify/node_modules/optimist/test/_/argv.js +2 -0
- data/node_modules/browserify/node_modules/optimist/test/_/bin.js +3 -0
- data/node_modules/browserify/node_modules/optimist/test/_.js +71 -0
- data/node_modules/browserify/node_modules/optimist/test/parse.js +433 -0
- data/node_modules/browserify/node_modules/optimist/test/usage.js +292 -0
- data/node_modules/browserify/node_modules/optimist/x.js +1 -0
- data/node_modules/browserify/node_modules/resolve/LICENSE +18 -0
- data/node_modules/browserify/node_modules/resolve/README.markdown +47 -0
- data/node_modules/browserify/node_modules/resolve/index.js +109 -0
- data/node_modules/browserify/node_modules/resolve/package.json +41 -0
- data/node_modules/browserify/node_modules/resolve/test/core.js +12 -0
- data/node_modules/browserify/node_modules/resolve/test/filter.js +15 -0
- data/node_modules/browserify/node_modules/resolve/test/mock.js +68 -0
- data/node_modules/browserify/node_modules/resolve/test/resolver/bar/node_modules/foo/index.js +1 -0
- data/node_modules/browserify/node_modules/resolve/test/resolver/baz/doom.js +0 -0
- data/node_modules/browserify/node_modules/resolve/test/resolver/baz/package.json +3 -0
- data/node_modules/browserify/node_modules/resolve/test/resolver/baz/quux.js +1 -0
- data/node_modules/browserify/node_modules/resolve/test/resolver/biz/node_modules/grux/index.js +1 -0
- data/node_modules/browserify/node_modules/resolve/test/resolver/biz/node_modules/tiv/index.js +1 -0
- data/node_modules/browserify/node_modules/resolve/test/resolver/cup.coffee +1 -0
- data/node_modules/browserify/node_modules/resolve/test/resolver/foo.js +1 -0
- data/node_modules/browserify/node_modules/resolve/test/resolver/mug.coffee +0 -0
- data/node_modules/browserify/node_modules/resolve/test/resolver/mug.js +0 -0
- data/node_modules/browserify/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
- data/node_modules/browserify/node_modules/resolve/test/resolver/other_path/root.js +0 -0
- data/node_modules/browserify/node_modules/resolve/test/resolver.js +157 -0
- data/node_modules/browserify/node_modules/syntax-error/LICENSE +18 -0
- data/node_modules/browserify/node_modules/syntax-error/example/check.js +12 -0
- data/node_modules/browserify/node_modules/syntax-error/example/src.js +9 -0
- data/node_modules/browserify/node_modules/syntax-error/index.js +54 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/LICENSE.BSD +19 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/README.md +74 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/assets/codemirror/codemirror.css +112 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/assets/codemirror/codemirror.js +2972 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/assets/codemirror/javascript.js +360 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/assets/json2.js +487 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/assets/style.css +164 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/assets/yui/treeview-min.js +12 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/assets/yui/treeview-sprite.gif +0 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/assets/yui/treeview.css +7 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/assets/yui/yahoo-dom-event.js +14 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/bin/esparse.js +42 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/changes +92 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/cm +696 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/checkenv.js +42 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/collector.html +82 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/collector.js +170 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/functiontrace.html +106 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/functiontrace.js +123 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/parse.css +82 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/parse.html +352 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/precedence.html +225 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/rewrite.html +120 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/rewrite.js +71 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/esprima.js +3577 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/index.html +103 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/package.json +39 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/Tokenizer.js +646 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/XMLHttpRequest.js +509 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/ZeParser.js +2185 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/backbone-0.5.3.js +1158 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/benchmark.js +3261 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/escodegen.js +906 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/esmorph.js +240 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/ext-core-3.0.0.js +6579 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/ext-core-3.1.0.js +10255 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/jquery-1.6.4.js +9046 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/jquery-1.7.1.js +9266 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/jquery.mobile-1.0.js +6951 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/jsdefs.js +731 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/jslex.js +588 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/jsparse.js +1921 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/mootools-1.3.2.js +5952 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/mootools-1.4.1.js +6297 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/parse-js.js +1342 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/platform.js +878 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/prototype-1.6.1.js +4874 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/prototype-1.7.0.0.js +6082 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/underscore-1.2.3.js +981 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/benchmarks.html +58 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/benchmarks.js +328 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/compare.html +140 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/compare.js +270 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/compat.html +40 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/compat.js +239 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/coverage.footer.html +3 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/coverage.header.html +37 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/coverage.html +3617 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/index.html +36 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/reflect.js +403 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/run.js +66 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/test.js +16659 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/tools/generate-unicode-regex.py +164 -0
- data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/tools/update-coverage.sh +28 -0
- data/node_modules/browserify/node_modules/syntax-error/package.json +46 -0
- data/node_modules/browserify/node_modules/syntax-error/readme.markdown +87 -0
- data/node_modules/browserify/node_modules/syntax-error/test/check.js +17 -0
- data/node_modules/browserify/node_modules/syntax-error/test/sources/check.js +9 -0
- data/node_modules/browserify/node_modules/vm-browserify/README.markdown +103 -0
- data/node_modules/browserify/node_modules/vm-browserify/example/run/bundle.js +473 -0
- data/node_modules/browserify/node_modules/vm-browserify/example/run/entry.js +6 -0
- data/node_modules/browserify/node_modules/vm-browserify/example/run/index.html +9 -0
- data/node_modules/browserify/node_modules/vm-browserify/example/run/server.js +6 -0
- data/node_modules/browserify/node_modules/vm-browserify/index.js +85 -0
- data/node_modules/browserify/node_modules/vm-browserify/package.json +39 -0
- data/node_modules/browserify/node_modules/vm-browserify/testling/run.js +22 -0
- data/node_modules/browserify/node_modules/vm-browserify/testling/test.sh +11 -0
- data/node_modules/browserify/package.json +71 -0
- data/node_modules/browserify/test/alias.js +58 -0
- data/node_modules/browserify/test/backbone.js +21 -0
- data/node_modules/browserify/test/bin.js +39 -0
- data/node_modules/browserify/test/buffer.js +99 -0
- data/node_modules/browserify/test/bundle.js +32 -0
- data/node_modules/browserify/test/cache.js +28 -0
- data/node_modules/browserify/test/coffee/bar.js +1 -0
- data/node_modules/browserify/test/coffee/baz.coffee +1 -0
- data/node_modules/browserify/test/coffee/entry.coffee +1 -0
- data/node_modules/browserify/test/coffee/foo.coffee +1 -0
- data/node_modules/browserify/test/coffee/index.coffee +5 -0
- data/node_modules/browserify/test/coffee/nested/nested.coffee +2 -0
- data/node_modules/browserify/test/coffee.js +39 -0
- data/node_modules/browserify/test/comment/main.js +2 -0
- data/node_modules/browserify/test/comment.js +17 -0
- data/node_modules/browserify/test/crypto.js +37 -0
- data/node_modules/browserify/test/dnode.js +27 -0
- data/node_modules/browserify/test/dollar/dollar/index.js +7 -0
- data/node_modules/browserify/test/dollar.js +19 -0
- data/node_modules/browserify/test/entry/main.js +1 -0
- data/node_modules/browserify/test/entry/one.js +1 -0
- data/node_modules/browserify/test/entry/two.js +1 -0
- data/node_modules/browserify/test/entry.js +36 -0
- data/node_modules/browserify/test/error_code/src.js +2 -0
- data/node_modules/browserify/test/error_code.js +24 -0
- data/node_modules/browserify/test/export/entry.js +1 -0
- data/node_modules/browserify/test/export.js +52 -0
- data/node_modules/browserify/test/field/miss.js +1 -0
- data/node_modules/browserify/test/field/node_modules/z-miss/browser.js +1 -0
- data/node_modules/browserify/test/field/node_modules/z-miss/main.js +1 -0
- data/node_modules/browserify/test/field/node_modules/z-miss/package.json +4 -0
- data/node_modules/browserify/test/field/node_modules/z-object/browser.js +1 -0
- data/node_modules/browserify/test/field/node_modules/z-object/main.js +1 -0
- data/node_modules/browserify/test/field/node_modules/z-object/package.json +6 -0
- data/node_modules/browserify/test/field/node_modules/z-string/browser.js +1 -0
- data/node_modules/browserify/test/field/node_modules/z-string/main.js +1 -0
- data/node_modules/browserify/test/field/node_modules/z-string/package.json +4 -0
- data/node_modules/browserify/test/field/node_modules/z-sub/browser/a.js +1 -0
- data/node_modules/browserify/test/field/node_modules/z-sub/browser/b.js +1 -0
- data/node_modules/browserify/test/field/node_modules/z-sub/main.js +1 -0
- data/node_modules/browserify/test/field/node_modules/z-sub/package.json +4 -0
- data/node_modules/browserify/test/field/object.js +1 -0
- data/node_modules/browserify/test/field/string.js +1 -0
- data/node_modules/browserify/test/field/sub.js +1 -0
- data/node_modules/browserify/test/field.js +64 -0
- data/node_modules/browserify/test/global/main.js +2 -0
- data/node_modules/browserify/test/global.js +19 -0
- data/node_modules/browserify/test/jade.js +35 -0
- data/node_modules/browserify/test/json/beep.json +4 -0
- data/node_modules/browserify/test/json/main.js +1 -0
- data/node_modules/browserify/test/json.js +17 -0
- data/node_modules/browserify/test/maxlisteners.js +8 -0
- data/node_modules/browserify/test/module.js +22 -0
- data/node_modules/browserify/test/multi_entry/a.js +2 -0
- data/node_modules/browserify/test/multi_entry/b.js +2 -0
- data/node_modules/browserify/test/multi_entry/c.js +3 -0
- data/node_modules/browserify/test/multi_entry.js +20 -0
- data/node_modules/browserify/test/multi_ignore.js +23 -0
- data/node_modules/browserify/test/node_modules/beep/index.js +1 -0
- data/node_modules/browserify/test/require_cache.js +18 -0
- data/node_modules/browserify/test/retarget.js +27 -0
- data/node_modules/browserify/test/seq.js +47 -0
- data/node_modules/browserify/test/subdep/index.js +1 -0
- data/node_modules/browserify/test/subdep/node_modules/qq/b.js +1 -0
- data/node_modules/browserify/test/subdep/node_modules/qq/ignore_me.js +1 -0
- data/node_modules/browserify/test/subdep/node_modules/qq/node_modules/a/index.js +1 -0
- data/node_modules/browserify/test/subdep/node_modules/qq/node_modules/a/package.json +5 -0
- data/node_modules/browserify/test/subdep/node_modules/qq/node_modules/c/index.js +1 -0
- data/node_modules/browserify/test/subdep/node_modules/qq/node_modules/c/package.json +5 -0
- data/node_modules/browserify/test/subdep/node_modules/qq/node_modules/f/index.js +1 -0
- data/node_modules/browserify/test/subdep/node_modules/qq/node_modules/z/index.js +1 -0
- data/node_modules/browserify/test/subdep/node_modules/qq/package.json +3 -0
- data/node_modules/browserify/test/subdep/package.json +6 -0
- data/node_modules/browserify/test/subdep.js +26 -0
- data/node_modules/browserify/test/util.js +48 -0
- data/node_modules/browserify/test/watch/a.js +1 -0
- data/node_modules/browserify/test/watch.js +91 -0
- data/node_modules/browserify/test/wrap/a.js +2 -0
- data/node_modules/browserify/test/wrap/c.js +1 -0
- data/node_modules/browserify/test/wrap/node_modules/b/main.js +1 -0
- data/node_modules/browserify/test/wrap/node_modules/b/package.json +3 -0
- data/node_modules/browserify/test/wrap/node_modules/skipmetoo/index.js +1 -0
- data/node_modules/browserify/test/wrap/skipme.js +1 -0
- data/node_modules/browserify/test/wrap/x.js +0 -0
- data/node_modules/browserify/test/wrap.js +43 -0
- data/node_modules/browserify/testling/README.markdown +29 -0
- data/node_modules/browserify/testling/test.sh +37 -0
- data/node_modules/browserify/testling/tick.js +9 -0
- data/node_modules/browserify/testling/timers.js +50 -0
- data/node_modules/browserify/testling/util.js +24 -0
- data/node_modules/browserify/v2.markdown +41 -0
- data/node_modules/browserify/wrappers/alias.js +1 -0
- data/node_modules/browserify/wrappers/body.js +2 -0
- data/node_modules/browserify/wrappers/body_debug.js +2 -0
- data/node_modules/browserify/wrappers/entry.js +3 -0
- data/node_modules/browserify/wrappers/entry_debug.js +3 -0
- data/node_modules/browserify/wrappers/package.js +3 -0
- data/node_modules/browserify/wrappers/prelude.js +196 -0
- data/node_modules/module-deps/LICENSE +18 -0
- data/node_modules/module-deps/cmd.js +8 -0
- data/node_modules/module-deps/example/deps.js +8 -0
- data/node_modules/module-deps/example/files/bar.js +3 -0
- data/node_modules/module-deps/example/files/foo.js +5 -0
- data/node_modules/module-deps/example/files/main.js +2 -0
- data/node_modules/module-deps/example/files/xyz.js +2 -0
- data/node_modules/module-deps/index.js +142 -0
- data/node_modules/module-deps/node_modules/browser-resolve/README.md +14 -0
- data/node_modules/module-deps/node_modules/browser-resolve/builtin/assert.js +314 -0
- data/node_modules/module-deps/node_modules/browser-resolve/builtin/child_process.js +2 -0
- data/node_modules/module-deps/node_modules/browser-resolve/builtin/events.js +183 -0
- data/node_modules/module-deps/node_modules/browser-resolve/builtin/fs.js +1 -0
- data/node_modules/module-deps/node_modules/browser-resolve/builtin/https.js +13 -0
- data/node_modules/module-deps/node_modules/browser-resolve/builtin/net.js +1 -0
- data/node_modules/module-deps/node_modules/browser-resolve/builtin/path.js +175 -0
- data/node_modules/module-deps/node_modules/browser-resolve/builtin/process.js +55 -0
- data/node_modules/module-deps/node_modules/browser-resolve/builtin/querystring.js +250 -0
- data/node_modules/module-deps/node_modules/browser-resolve/builtin/stream.js +119 -0
- data/node_modules/module-deps/node_modules/browser-resolve/builtin/string_decoder.js +161 -0
- data/node_modules/module-deps/node_modules/browser-resolve/builtin/sys.js +1 -0
- data/node_modules/module-deps/node_modules/browser-resolve/builtin/timers.js +39 -0
- data/node_modules/module-deps/node_modules/browser-resolve/builtin/tls.js +1 -0
- data/node_modules/module-deps/node_modules/browser-resolve/builtin/tty.js +2 -0
- data/node_modules/module-deps/node_modules/browser-resolve/builtin/url.js +604 -0
- data/node_modules/module-deps/node_modules/browser-resolve/builtin/util.js +351 -0
- data/node_modules/module-deps/node_modules/browser-resolve/index.js +144 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/buffer-browserify/README.md +11 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/buffer-browserify/buffer_ieee754.js +84 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/buffer-browserify/index.js +1282 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/buffer-browserify/node_modules/base64-js/README.md +14 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/buffer-browserify/node_modules/base64-js/lib/b64.js +84 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/buffer-browserify/node_modules/base64-js/package.json +26 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/buffer-browserify/node_modules/base64-js/test/runner.js +50 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/buffer-browserify/package.json +42 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/buffer-browserify/test/buffer.js +121 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/console-browserify/LICENCE +19 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/console-browserify/README.md +32 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/console-browserify/index.js +85 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/console-browserify/package.json +76 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/console-browserify/test/index.js +67 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/console-browserify/test/static/index.html +12 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/console-browserify/test/static/test-adapter.js +53 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/crypto-browserify/example/bundle.js +637 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/crypto-browserify/example/index.html +12 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/crypto-browserify/example/test.js +4 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/crypto-browserify/index.js +74 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/crypto-browserify/md5.js +384 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/crypto-browserify/package.json +30 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/crypto-browserify/readme.markdown +20 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/crypto-browserify/rng.js +37 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/crypto-browserify/sha.js +210 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/crypto-browserify/test/simple.js +35 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/README.markdown +128 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/example/get/index.html +9 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/example/get/main.js +14 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/example/get/server.js +12 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/example/headers/index.html +9 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/example/headers/main.js +18 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/example/headers/server.js +15 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/example/post/index.html +9 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/example/post/main.js +16 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/example/post/server.js +19 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/example/streaming/index.html +9 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/example/streaming/main.js +16 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/example/streaming/server.js +21 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/index.js +59 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/lib/request.js +122 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/lib/response.js +119 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/node_modules/concat-stream/index.js +48 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/node_modules/concat-stream/package.json +29 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/node_modules/concat-stream/readme.md +31 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/node_modules/concat-stream/test.js +34 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/http-browserify/package.json +42 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/vm-browserify/README.markdown +103 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/vm-browserify/example/run/bundle.js +473 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/vm-browserify/example/run/entry.js +6 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/vm-browserify/example/run/index.html +9 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/vm-browserify/example/run/server.js +6 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/vm-browserify/index.js +85 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/vm-browserify/package.json +39 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/vm-browserify/testling/run.js +22 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/vm-browserify/testling/test.sh +11 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/zlib-browserify/index.js +43 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/zlib-browserify/package.json +33 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/zlib-browserify/readme.md +1 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/zlib-browserify/test/zlib.test.js +65 -0
- data/node_modules/module-deps/node_modules/browser-resolve/node_modules/zlib-browserify/zlib.js +55 -0
- data/node_modules/module-deps/node_modules/browser-resolve/package.json +38 -0
- data/node_modules/module-deps/node_modules/browser-resolve/test/core.js +20 -0
- data/node_modules/module-deps/node_modules/browser-resolve/test/fixtures/foo.js +1 -0
- data/node_modules/module-deps/node_modules/browser-resolve/test/local.js +15 -0
- data/node_modules/module-deps/node_modules/browser-resolve/test/mocha.opts +1 -0
- data/node_modules/module-deps/node_modules/browser-resolve/test/modules.js +99 -0
- data/node_modules/module-deps/node_modules/detective/LICENSE +18 -0
- data/node_modules/module-deps/node_modules/detective/example/strings.js +6 -0
- data/node_modules/module-deps/node_modules/detective/example/strings_src.js +3 -0
- data/node_modules/module-deps/node_modules/detective/index.js +62 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/LICENSE.BSD +19 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/LICENSE.source-map +27 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/README.md +99 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/bin/escodegen.js +43 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/bin/esgenerate.js +43 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/escodegen.js +2245 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/LICENSE +28 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/Makefile.dryice.js +165 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/README.md +268 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/build/assert-shim.js +56 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/build/mini-require.js +152 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/build/prefix-source-map.jsm +20 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/build/prefix-utils.jsm +18 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/build/suffix-browser.js +8 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/build/suffix-source-map.jsm +6 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/build/suffix-utils.jsm +20 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/build/test-prefix.js +8 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/build/test-suffix.js +3 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/lib/source-map/array-set.js +107 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/lib/source-map/base64-vlq.js +144 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/lib/source-map/base64.js +42 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/lib/source-map/binary-search.js +81 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/lib/source-map/source-map-consumer.js +379 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/lib/source-map/source-map-generator.js +202 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/lib/source-map/source-node.js +199 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/lib/source-map/util.js +40 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/lib/source-map.js +8 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/node_modules/amdefine/LICENSE +58 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/node_modules/amdefine/README.md +119 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/node_modules/amdefine/amdefine.js +299 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/node_modules/amdefine/package.json +29 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/package.json +38 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/test/run-tests.js +72 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/test/source-map/test-api.js +26 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/test/source-map/test-array-set.js +71 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/test/source-map/test-base64-vlq.js +24 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/test/source-map/test-base64.js +35 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/test/source-map/test-binary-search.js +54 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/test/source-map/test-dog-fooding.js +72 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/test/source-map/test-source-map-consumer.js +142 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/test/source-map/test-source-map-generator.js +187 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/test/source-map/test-source-node.js +163 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/test/source-map/util.js +78 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/escodegen/package.json +48 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/ChangeLog +18 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/LICENSE.BSD +19 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/README.md +73 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/bin/esparse.js +117 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/bin/esvalidate.js +177 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/component.json +14 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/doc/index.html +473 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/esprima.js +3895 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/examples/detectnestedternary.js +106 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/examples/findbooleantrap.js +173 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/examples/tokendist.js +33 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/index.html +102 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/package.json +40 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/test/benchmarks.html +58 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/test/benchmarks.js +334 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/test/compare.html +69 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/test/compare.js +328 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/test/compat.html +40 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/test/compat.js +239 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/test/coverage.footer.html +3 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/test/coverage.header.html +37 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/test/coverage.html +4676 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/test/index.html +37 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/test/module.html +36 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/test/module.js +129 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/test/reflect.js +422 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/test/run.js +66 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/test/runner.js +387 -0
- data/node_modules/module-deps/node_modules/detective/node_modules/esprima/test/test.js +19764 -0
- data/node_modules/module-deps/node_modules/detective/package.json +36 -0
- data/node_modules/module-deps/node_modules/detective/readme.markdown +70 -0
- data/node_modules/module-deps/node_modules/detective/test/both.js +11 -0
- data/node_modules/module-deps/node_modules/detective/test/chained.js +9 -0
- data/node_modules/module-deps/node_modules/detective/test/files/both.js +4 -0
- data/node_modules/module-deps/node_modules/detective/test/files/chained.js +5 -0
- data/node_modules/module-deps/node_modules/detective/test/files/nested.js +22 -0
- data/node_modules/module-deps/node_modules/detective/test/files/shebang.js +5 -0
- data/node_modules/module-deps/node_modules/detective/test/files/strings.js +13 -0
- data/node_modules/module-deps/node_modules/detective/test/files/word.js +13 -0
- data/node_modules/module-deps/node_modules/detective/test/nested.js +9 -0
- data/node_modules/module-deps/node_modules/detective/test/shebang.js +9 -0
- data/node_modules/module-deps/node_modules/detective/test/strings.js +9 -0
- data/node_modules/module-deps/node_modules/detective/test/word.js +12 -0
- data/node_modules/module-deps/node_modules/resolve/LICENSE +18 -0
- data/node_modules/module-deps/node_modules/resolve/example/async.js +5 -0
- data/node_modules/module-deps/node_modules/resolve/example/sync.js +3 -0
- data/node_modules/module-deps/node_modules/resolve/index.js +5 -0
- data/node_modules/module-deps/node_modules/resolve/lib/async.js +131 -0
- data/node_modules/module-deps/node_modules/resolve/lib/core.js +4 -0
- data/node_modules/module-deps/node_modules/resolve/lib/core.json +38 -0
- data/node_modules/module-deps/node_modules/resolve/lib/sync.js +98 -0
- data/node_modules/module-deps/node_modules/resolve/package.json +32 -0
- data/node_modules/module-deps/node_modules/resolve/readme.markdown +134 -0
- data/node_modules/module-deps/node_modules/resolve/test/core.js +12 -0
- data/node_modules/module-deps/node_modules/resolve/test/filter.js +17 -0
- data/node_modules/module-deps/node_modules/resolve/test/filter_sync.js +15 -0
- data/node_modules/module-deps/node_modules/resolve/test/mock.js +68 -0
- data/node_modules/module-deps/node_modules/resolve/test/mock_sync.js +68 -0
- data/node_modules/module-deps/node_modules/resolve/test/resolver/bar/node_modules/foo/index.js +1 -0
- data/node_modules/module-deps/node_modules/resolve/test/resolver/baz/doom.js +0 -0
- data/node_modules/module-deps/node_modules/resolve/test/resolver/baz/package.json +3 -0
- data/node_modules/module-deps/node_modules/resolve/test/resolver/baz/quux.js +1 -0
- data/node_modules/module-deps/node_modules/resolve/test/resolver/biz/node_modules/grux/index.js +1 -0
- data/node_modules/module-deps/node_modules/resolve/test/resolver/biz/node_modules/tiv/index.js +1 -0
- data/node_modules/module-deps/node_modules/resolve/test/resolver/cup.coffee +1 -0
- data/node_modules/module-deps/node_modules/resolve/test/resolver/foo.js +1 -0
- data/node_modules/module-deps/node_modules/resolve/test/resolver/mug.coffee +0 -0
- data/node_modules/module-deps/node_modules/resolve/test/resolver/mug.js +0 -0
- data/node_modules/module-deps/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
- data/node_modules/module-deps/node_modules/resolve/test/resolver/other_path/root.js +0 -0
- data/node_modules/module-deps/node_modules/resolve/test/resolver.js +144 -0
- data/node_modules/module-deps/node_modules/resolve/test/resolver_sync.js +157 -0
- data/node_modules/module-deps/package.json +47 -0
- data/node_modules/module-deps/readme.markdown +128 -0
- data/node_modules/module-deps/test/bundle.js +21 -0
- data/node_modules/module-deps/test/deps.js +42 -0
- data/node_modules/module-deps/test/files/bar.js +3 -0
- data/node_modules/module-deps/test/files/foo.js +5 -0
- data/node_modules/module-deps/test/files/main.js +2 -0
- data/node_modules/module-deps/test/files/tr_module/f.js +1 -0
- data/node_modules/module-deps/test/files/tr_module/main.js +7 -0
- data/node_modules/module-deps/test/files/tr_module/node_modules/g/index.js +1 -0
- data/node_modules/module-deps/test/files/tr_module/node_modules/g/node_modules/insert-ggg/index.js +7 -0
- data/node_modules/module-deps/test/files/tr_module/node_modules/g/package.json +6 -0
- data/node_modules/module-deps/test/files/tr_module/node_modules/insert-aaa/index.js +7 -0
- data/node_modules/module-deps/test/files/tr_module/node_modules/insert-bbb/index.js +7 -0
- data/node_modules/module-deps/test/files/tr_module/node_modules/m/index.js +3 -0
- data/node_modules/module-deps/test/files/tr_sh/f.js +1 -0
- data/node_modules/module-deps/test/files/tr_sh/main.js +7 -0
- data/node_modules/module-deps/test/files/tr_sh/node_modules/g/index.js +1 -0
- data/node_modules/module-deps/test/files/tr_sh/node_modules/g/package.json +6 -0
- data/node_modules/module-deps/test/files/tr_sh/node_modules/g/tr_g.js +6 -0
- data/node_modules/module-deps/test/files/tr_sh/node_modules/m/index.js +3 -0
- data/node_modules/module-deps/test/files/tr_sh/tr_a.js +6 -0
- data/node_modules/module-deps/test/files/tr_sh/tr_b.js +6 -0
- data/node_modules/module-deps/test/files/xyz.js +2 -0
- data/node_modules/module-deps/test/tr_fn.js +29 -0
- data/node_modules/module-deps/test/tr_module.js +21 -0
- data/node_modules/module-deps/test/tr_sh.js +21 -0
- data/node_modules/through/LICENSE.APACHE2 +15 -0
- data/node_modules/through/LICENSE.MIT +24 -0
- data/node_modules/through/index.js +103 -0
- data/node_modules/through/package.json +35 -0
- data/node_modules/through/readme.markdown +43 -0
- data/node_modules/through/test/buffering.js +71 -0
- data/node_modules/through/test/end.js +27 -0
- data/node_modules/through/test/index.js +113 -0
- data/package.json +11 -0
- metadata +846 -0
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
[
|
|
2
|
+
{"id":"ccc87f2e39902598d0895524bd1b94b0","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b94b0","_rev":"1-a37d6c7e2435cd5708a87738ce533159","type":"test","time":1356048548102,"commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048433734.9429d555","browser":"safari/5.1","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
|
|
3
|
+
,
|
|
4
|
+
{"id":"ccc87f2e39902598d0895524bd1b8658","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b8658","_rev":"1-70d116718dcfb30e16434f0eafe7ab75","type":"test","time":1356048547322,"commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048433734.9429d555","browser":"opera/12.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
|
|
5
|
+
,
|
|
6
|
+
{"id":"ccc87f2e39902598d0895524bd1b8265","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b8265","_rev":"1-8c6fd3092656d3d1166f5ff2951e73fa","type":"test","time":1356048546308,"commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048433734.9429d555","browser":"chrome/canary","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
|
|
7
|
+
,
|
|
8
|
+
{"id":"ccc87f2e39902598d0895524bd1b771d","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b771d","_rev":"1-3e73f8f39e4a41746f3940a89df13dbb","type":"test","time":1356048514966,"commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048433734.9429d555","browser":"chrome/22.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
|
|
9
|
+
,
|
|
10
|
+
{"id":"ccc87f2e39902598d0895524bd1b7133","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b7133","_rev":"1-55c5f47e59105c7775284f68f67b6d2c","type":"test","time":1356048513933,"commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048433734.9429d555","browser":"firefox/nightly","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
|
|
11
|
+
,
|
|
12
|
+
{"id":"ccc87f2e39902598d0895524bd1b66b4","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b66b4","_rev":"1-9153ed55ee3ca36b262823fe946df2ca","type":"test","time":1356048484180,"commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048433734.9429d555","browser":"firefox/17.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n"]}}
|
|
13
|
+
,
|
|
14
|
+
{"id":"ccc87f2e39902598d0895524bd1b5836","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b5836","_rev":"1-ddf6706ef372840b57f307c49918c116","type":"test","time":1356048483183,"commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048433734.9429d555","browser":"firefox/15.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
|
|
15
|
+
,
|
|
16
|
+
{"id":"ccc87f2e39902598d0895524bd1b565f","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b565f","_rev":"1-e0ae75a3c5b33c5666308e0d3add0c79","type":"test","time":1356048482334,"commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048433734.9429d555","browser":"iexplore/9.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
|
|
17
|
+
,
|
|
18
|
+
{"id":"ccc87f2e39902598d0895524bd1b5620","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b5620","_rev":"1-ab43bab51d94ce0652705197038e6d7e","type":"test","time":1356048477741,"commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048433734.9429d555","browser":"iexplore/8.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"not ok 1 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"not ok 2 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"not ok 3 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"not ok 4 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"not ok 5 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"not ok 6 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"not ok 7 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"not ok 8 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..8\\n\"]\n","[\"stdout\",\"# tests 8\\n\"]\n","[\"stdout\",\"# pass 0\\n\"]\n","[\"stdout\",\"# fail 8\\n\"]\n"]}}
|
|
19
|
+
,
|
|
20
|
+
{"id":"ccc87f2e39902598d0895524bd1b534d","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b534d","_rev":"1-68e03cb7f611022d1f357e0e88331bd7","type":"bundle","time":1356048433735,"id":"1356048433734.9429d555","commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"output":["npm"," http ","GET https://registry.npmjs.org/to-array\n","npm http"," GET https://registry.npmjs.org/browserify\n","npm http"," GET https://registry.npmjs.org/tape\n","npm ","http GET https://registry.npmjs.org/testem\n","npm http ","304 https://registry.npmjs.org/tape\n","npm http"," 304 https://registry.npmjs.org/browserify\n","npm ","http 304 https://registry.npmjs.org/to-array\n","npm ","http 304 https://registry.npmjs.org/testem\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/jsonify\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/deep-equal\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/defined\n","npm ","http GET https://registry.npmjs.org/detective\n","npm ","http GET https://registry.npmjs.org/buffer-browserify\n","npm http"," GET https://registry.npmjs.org/deputy\n","npm ","http GET https://registry.npmjs.org/syntax-error\n","npm ","http GET https://registry.npmjs.org/resolve\n","npm ","http GET"," https://registry.npmjs.org/commondir\n","npm ","http GET https://registry.npmjs.org/nub\n","npm ","http GET https://registry.npmjs.org/coffee-script\n","npm ","http GET https://registry.npmjs.org/optimist\n","npm ","http GET https://registry.npmjs.org/vm-browserify\n","npm http GET"," https://registry.npmjs.org/http-browserify\n","npm"," http"," GET https://registry.npmjs.org/crypto-browserify\n","npm"," http GET https://registry.npmjs.org/express/2.5.10\n","npm ","http GET https://registry.npmjs.org/mustache/0.4.0\n","npm"," http GET https://registry.npmjs.org/winston/0.3.4\n","npm"," ","http"," GET https://registry.npmjs.org/socket.io/0.9.10\n","npm ","http GET https://registry.npmjs.org/commander\n","npm http"," GET https://registry.npmjs.org/charm/0.0.5\n","npm http"," GET https://registry.npmjs.org/js-yaml/0.3.5\n","npm http"," GET https://registry.npmjs.org/glob/3.0.1\n","npm http"," GET https://registry.npmjs.org/async/0.1.15\n","npm ","http"," ","GET https://registry.npmjs.org/rimraf\n","npm http"," GET https://registry.npmjs.org/underscore\n","npm ","http GET https://registry.npmjs.org/backbone\n","npm ","http GET"," https://registry.npmjs.org/styled_string\n","npm http"," GET https://registry.npmjs.org/colors\n","npm ","http GET https://registry.npmjs.org/fireworm\n","npm http"," 304 https://registry.npmjs.org/jsonify\n","npm ","http 304 https://registry.npmjs.org/defined\n","npm"," http 304 https://registry.npmjs.org/deep-equal\n","npm http ","304 https://registry.npmjs.org/buffer-browserify\n","npm http"," 304 https://registry.npmjs.org/detective\n","npm http 304"," https://registry.npmjs.org/deputy\n","npm ","http 304 https://registry.npmjs.org/syntax-error\n","npm http"," 304 https://registry.npmjs.org/resolve\n","npm http 304"," https://registry.npmjs.org/commondir\n","npm http"," 304 https://registry.npmjs.org/nub\n","npm http"," 304 https://registry.npmjs.org/coffee-script\n","npm http"," 304 https://registry.npmjs.org/optimist\n","npm ","http 304 https://registry.npmjs.org/vm-browserify\n","npm http 304"," https://registry.npmjs.org/http-browserify\n","npm ","http 304 https://registry.npmjs.org/crypto-browserify\n","npm http ","304 https://registry.npmjs.org/express/2.5.10\n","npm http ","GET https://registry.npmjs.org/mkdirp\n","npm ","http GET https://registry.npmjs.org/esprima\n","npm ","http GET https://registry.npmjs.org/concat-stream/0.0.8\n","npm"," http GET https://registry.npmjs.org/base64-js/0.0.2\n","npm http"," GET"," https://registry.npmjs.org/wordwrap\n","npm http ","304 https://registry.npmjs.org/winston/0.3.4\n","npm ","http 304 https://registry.npmjs.org/mustache/0.4.0\n","npm ","WARN package.json mustache@0.4.0 No README.md file found!\n","npm ","http 304 https://registry.npmjs.org/socket.io/0.9.10\n","npm http"," 304 https://registry.npmjs.org/commander\n","npm ","http 304 https://registry.npmjs.org/async/0.1.15\n","npm ","http 304 https://registry.npmjs.org/rimraf\n","npm ","http 304 https://registry.npmjs.org/underscore\n","npm ","http 304 https://registry.npmjs.org/backbone\n","npm ","http 304 https://registry.npmjs.org/styled_string\n","npm ","http 304 https://registry.npmjs.org/colors\n","npm"," http 304 https://registry.npmjs.org/fireworm\n","npm ","http 304 https://registry.npmjs.org/mkdirp\n","npm ","http 304 https://registry.npmjs.org/charm/0.0.5\n","npm ","http 304 https://registry.npmjs.org/glob/3.0.1\n","npm"," http 304 https://registry.npmjs.org/js-yaml/0.3.5\n","npm"," http 304 https://registry.npmjs.org/wordwrap\n","npm"," http 304 https://registry.npmjs.org/base64-js/0.0.2\n","npm ","http 304 https://registry.npmjs.org/concat-stream/0.0.8\n","npm http"," 304 https://registry.npmjs.org/esprima\n","npm ","http GET https://registry.npmjs.org/graceful-fs\n","npm http"," GET https://registry.npmjs.org/async\n","npm ","http GET https://registry.npmjs.org/fast-list\nnpm http GET https://registry.npmjs.org/keypress\nnpm http GET https://registry.npmjs.org/mime/1.2.4\n","npm http"," GET https://registry.npmjs.org/connect\n","npm ","http GET https://registry.npmjs.org/policyfile/0.0.4\n","npm"," http GET https://registry.npmjs.org/minimatch\n","npm ","http GET https://registry.npmjs.org/graceful-fs\n","npm http"," GET https://registry.npmjs.org/set\n","npm http"," GET https://registry.npmjs.org/socket.io-client/0.9.10\n","npm http"," GET https://registry.npmjs.org/minimatch\n","npm"," http GET https://registry.npmjs.org/qs\n","npm ","http GET https://registry.npmjs.org/redis/0.7.2\n","npm http"," GET https://registry.npmjs.org/inherits\n","npm http"," GET https://registry.npmjs.org/mkdirp/0.3.0\n","npm ","http GET https://registry.npmjs.org/eyes\n","npm http"," GET https://registry.npmjs.org/loggly\n","npm ","http GET https://registry.npmjs.org/pkginfo\n","npm http ","304 https://registry.npmjs.org/graceful-fs\n","npm http"," 304 https://registry.npmjs.org/fast-list\n","npm http"," 304 https://registry.npmjs.org/mime/1.2.4\n","npm ","http 304 https://registry.npmjs.org/keypress\n","npm http ","304 https://registry.npmjs.org/connect\n","npm ","WARN package.json connect@1.9.2 No README.md file found!\n","npm http"," 304 https://registry.npmjs.org/minimatch\n","npm ","http 304 https://registry.npmjs.org/policyfile/0.0.4\nnpm http 304 https://registry.npmjs.org/graceful-fs\n","npm http"," 304 https://registry.npmjs.org/set\n","npm http"," 304 https://registry.npmjs.org/socket.io-client/0.9.10\n","npm ","http 304 https://registry.npmjs.org/qs\n","npm ","http 304 https://registry.npmjs.org/minimatch\n","npm http ","304 https://registry.npmjs.org/async\n","npm http ","GET https://registry.npmjs.org/lru-cache\n","npm"," http GET https://registry.npmjs.org/sigmund\n","npm http"," 304 https://registry.npmjs.org/redis/0.7.2\n","npm http ","304 https://registry.npmjs.org/eyes\n","npm"," http 304 https://registry.npmjs.org/mkdirp/0.3.0\n","npm ","http 304 https://registry.npmjs.org/inherits\n","npm ","http GET https://registry.npmjs.org/hiredis\n","npm ","http 304 https://registry.npmjs.org/pkginfo\n","npm ","http 304 https://registry.npmjs.org/loggly\n","npm http"," GET https://registry.npmjs.org/lru-cache\n","npm http"," GET https://registry.npmjs.org/timespan\n","npm http"," GET https://registry.npmjs.org/request\n","npm http"," GET https://registry.npmjs.org/formidable\n","npm ","http 304 https://registry.npmjs.org/lru-cache\n","npm ","http 304 https://registry.npmjs.org/sigmund\n","npm http"," GET https://registry.npmjs.org/uglify-js/1.2.5\n","npm ","http GET https://registry.npmjs.org/active-x-obfuscator/0.0.1\n","npm"," ","http"," GET"," https://registry.npmjs.org/xmlhttprequest/1.4.2\n","npm ","http GET https://registry.npmjs.org/ws\n","npm http"," 304 https://registry.npmjs.org/formidable\n","npm ","http 304 https://registry.npmjs.org/request\n","npm http"," 304 https://registry.npmjs.org/uglify-js/1.2.5\n","npm ","http 304 https://registry.npmjs.org/active-x-obfuscator/0.0.1\n","npm http 304"," https://registry.npmjs.org/ws\n","npm ","http ","304"," https://registry.npmjs.org/xmlhttprequest/1.4.2\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/zeparser/0.0.5\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/commander\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/tinycolor\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/options\n","npm http 304"," https://registry.npmjs.org/hiredis\n","npm ","WARN package.json hiredis@0.1.14 No README.md file found!\n","\n> hiredis@0.1.14 preinstall /tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis\n> make || gmake\n\n","cd deps/hiredis && make static\n","make[1]: Entering directory `/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\ncc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb net.c\n","npm ","http 304 https://registry.npmjs.org/timespan\n","npm http"," 304 https://registry.npmjs.org/lru-cache\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb hiredis.c\n","npm http 304 https://registry.npmjs.org/tinycolor\n","npm http ","304 https://registry.npmjs.org/options\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb sds.c\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb async.c\n","ar rcs libhiredis.a net.o hiredis.o sds.o async.o\n","make[1]: Leaving directory `/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\n","node-waf configure build\n","Traceback (most recent call last):\n File \"/home/testling/installs/node-v0.8.15/bin/node-waf\", line 14, in <module>\n import Scripting\n File \"/home/testling/installs/node-v0.8.15/bin/../lib/node/wafadmin/Scripting.py\", line 146\n except Utils.WafError, e:\n ^\nSyntaxError: invalid syntax\n","make: *** [all] Error 1\n","cd deps/hiredis && gmake static\n","gmake[1]: Entering directory `/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\ngmake[1]: Nothing to be done for `static'.\ngmake[1]: Leaving directory `/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\n","node-waf configure build\n","Traceback (most recent call last):\n File \"/home/testling/installs/node-v0.8.15/bin/node-waf\", line 14, in <module>\n import Scripting\n File \"/home/testling/installs/node-v0.8.15/bin/../lib/node/wafadmin/Scripting.py\", line 146\n except Utils.WafError, e:\n ^\nSyntaxError: invalid syntax\n","gmake: *** [all] Error 1\n","npm ","WARN optional dep failed, continuing hiredis@0.1.14\n","npm http 304 https://registry.npmjs.org/zeparser/0.0.5\n","npm http 304"," https://registry.npmjs.org/commander\n","\n> ws@0.4.25 install /tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579/node_modules/testem/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws\n> (node-gyp rebuild 2> builderror.log) || (exit 0)\n\n","to-array@0.1.3 node_modules/to-array\n\ntape@0.1.3 node_modules/tape\n├── deep-equal@0.0.0\n├── defined@0.0.0\n└── jsonify@0.0.0\n\nbrowserify@1.16.6 node_modules/browserify\n├── nub@0.0.0\n├── commondir@0.0.1\n├── vm-browserify@0.0.1\n├── crypto-browserify@0.1.2\n├── resolve@0.2.3\n├── coffee-script@1.4.0\n├── deputy@0.0.4 (mkdirp@0.3.4)\n├── http-browserify@0.1.6 (concat-stream@0.0.8)\n├── buffer-browserify@0.0.4 (base64-js@0.0.2)\n├── optimist@0.3.5 (wordwrap@0.0.2)\n├── detective@0.2.1 (esprima@0.9.9)\n└── syntax-error@0.0.0 (esprima@0.9.9)\n\ntestem@0.2.50 node_modules/testem\n├── styled_string@0.0.1\n├── mustache@0.4.0\n├── colors@0.6.0-1\n├── charm@0.0.5\n├── backbone@0.9.9\n├── async@0.1.15\n├── underscore@1.4.3\n├── js-yaml@0.3.5\n├── rimraf@2.1.0 (graceful-fs@1.1.14)\n├── commander@1.1.1 (keypress@0.1.0)\n├── fireworm@0.0.8 (set@1.0.0, async@0.1.22, minimatch@0.2.9)\n├── express@2.5.10 (qs@0.4.2, mkdirp@0.3.0, mime@1.2.4, connect@1.9.2)\n├── glob@3.0.1 (graceful-fs@1.1.14, fast-list@1.0.2, inherits@1.0.0, minimatch@0.1.5)\n├── winston@0.3.4 (eyes@0.1.8, pkginfo@0.2.3, loggly@0.3.11)\n└── socket.io@0.9.10 (policyfile@0.0.4, redis@0.7.2, socket.io-client@0.9.10)\n"]}}
|
|
21
|
+
,
|
|
22
|
+
{"id":"ccc87f2e39902598d0895524bd1b4ce5","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b4ce5","_rev":"1-e88a0bc701698b2124220382d1c0a76b","type":"test","time":1356048464367,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"safari/5.1","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
|
|
23
|
+
,
|
|
24
|
+
{"id":"ccc87f2e39902598d0895524bd1b3d3b","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b3d3b","_rev":"1-1593c1bbcf93847eef3c664e11a4c5cc","type":"test","time":1356048463057,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"opera/12.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
|
|
25
|
+
,
|
|
26
|
+
{"id":"ccc87f2e39902598d0895524bd1b335b","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b335b","_rev":"1-55faab7d20b19d8a747928c8dbd8465b","type":"test","time":1356048460989,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"chrome/canary","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
|
|
27
|
+
,
|
|
28
|
+
{"id":"ccc87f2e39902598d0895524bd1b3287","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b3287","_rev":"1-c6a6ede67be18a3367f69011cb6355b8","type":"test","time":1356048458988,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"chrome/23.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
|
|
29
|
+
,
|
|
30
|
+
{"id":"ccc87f2e39902598d0895524bd1b2ffd","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b2ffd","_rev":"1-bf129b195cb4f9894809cd3e74b9ae89","type":"test","time":1356048453660,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"chrome/22.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
|
|
31
|
+
,
|
|
32
|
+
{"id":"ccc87f2e39902598d0895524bd1b2de4","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b2de4","_rev":"1-adcd8caa36d3b89df00cc23e4f42ed42","type":"test","time":1356048451312,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"firefox/nightly","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
|
|
33
|
+
,
|
|
34
|
+
{"id":"ccc87f2e39902598d0895524bd1b2a66","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b2a66","_rev":"1-76ef93b525cef86ae96a3d3f0c92492d","type":"test","time":1356048449466,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"firefox/17.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
|
|
35
|
+
,
|
|
36
|
+
{"id":"ccc87f2e39902598d0895524bd1b2861","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b2861","_rev":"1-1107e4e27ab2e4d8402e6e1f38c4ccc0","type":"test","time":1356048447780,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"firefox/15.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
|
|
37
|
+
,
|
|
38
|
+
{"id":"ccc87f2e39902598d0895524bd1b23e4","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b23e4","_rev":"1-00246209d3d00feb0f24b9f29221884d","type":"test","time":1356048445068,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"iexplore/9.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
|
|
39
|
+
,
|
|
40
|
+
{"id":"ccc87f2e39902598d0895524bd1b20bb","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b20bb","_rev":"1-c633100234cc2a2cf3f97877fd3efe13","type":"test","time":1356048440576,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"iexplore/8.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"not ok 1 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"not ok 2 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"not ok 3 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"not ok 4 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"not ok 5 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"not ok 6 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"not ok 7 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"not ok 8 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..8\\n\"]\n","[\"stdout\",\"# tests 8\\n\"]\n","[\"stdout\",\"# pass 0\\n\"]\n","[\"stdout\",\"# fail 8\\n\"]\n"]}}
|
|
41
|
+
,
|
|
42
|
+
{"id":"ccc87f2e39902598d0895524bd1b1a06","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b1a06","_rev":"1-e26be7bf75738693ea7588e39a056c25","type":"bundle","time":1356048400673,"id":"1356048400670.59fcea8f","commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"output":["npm"," http GET https://registry.npmjs.org/to-array\n","npm ","http GET https://registry.npmjs.org/tape\n","npm"," http GET https://registry.npmjs.org/browserify\n","npm ","http GET https://registry.npmjs.org/testem\n","npm ","http 304 https://registry.npmjs.org/browserify\n","npm ","http 304 https://registry.npmjs.org/tape\n","npm ","http 304 https://registry.npmjs.org/to-array\n","npm"," http 304 https://registry.npmjs.org/testem\n","npm"," http GET https://registry.npmjs.org/jsonify\n","npm"," http GET https://registry.npmjs.org/deep-equal\n","npm ","http GET https://registry.npmjs.org/defined\n","npm ","http GET https://registry.npmjs.org/detective\n","npm ","http GET https://registry.npmjs.org/buffer-browserify\n","npm"," http ","GET"," https://registry.npmjs.org/deputy\n","npm ","http GET https://registry.npmjs.org/syntax-error\n","npm ","http GET https://registry.npmjs.org/resolve\n","npm ","http GET"," https://registry.npmjs.org/nub\n","npm ","http GET https://registry.npmjs.org/commondir\n","npm ","http GET https://registry.npmjs.org/coffee-script\n","npm ","http GET https://registry.npmjs.org/optimist\n","npm ","http GET https://registry.npmjs.org/http-browserify\n","npm ","http GET https://registry.npmjs.org/vm-browserify\n","npm"," ","http GET https://registry.npmjs.org/crypto-browserify\n","npm"," http GET https://registry.npmjs.org/socket.io/0.9.10\n","npm ","http GET https://registry.npmjs.org/winston/0.3.4\n","npm http"," GET https://registry.npmjs.org/charm/0.0.5\n","npm ","http"," GET https://registry.npmjs.org/js-yaml/0.3.5\n","npm ","http GET https://registry.npmjs.org/glob/3.0.1\n","npm ","http GET https://registry.npmjs.org/commander\n","npm http"," GET https://registry.npmjs.org/async/0.1.15\n","npm http"," GET https://registry.npmjs.org/rimraf\n","npm ","http GET https://registry.npmjs.org/underscore\n","npm ","http GET https://registry.npmjs.org/styled_string\n","npm ","http"," GET https://registry.npmjs.org/backbone\n","npm ","http GET https://registry.npmjs.org/colors\n","npm ","http GET https://registry.npmjs.org/fireworm\n","npm http"," GET https://registry.npmjs.org/express/2.5.10\n","npm ","http GET https://registry.npmjs.org/mustache/0.4.0\n","npm http ","304 https://registry.npmjs.org/defined\n","npm http"," 304 https://registry.npmjs.org/deep-equal\n","npm http"," 304 https://registry.npmjs.org/deputy\n","npm http"," 304 https://registry.npmjs.org/syntax-error\n","npm http 304"," https://registry.npmjs.org/resolve\n","npm http"," 304 https://registry.npmjs.org/nub\n","npm http ","304 https://registry.npmjs.org/commondir\n","npm http"," 304 https://registry.npmjs.org/coffee-script\n","npm http 304"," https://registry.npmjs.org/optimist\n","npm http"," 304 https://registry.npmjs.org/http-browserify\n","npm http 304"," https://registry.npmjs.org/vm-browserify\n","npm http"," 304 https://registry.npmjs.org/crypto-browserify\n","npm http 304"," https://registry.npmjs.org/socket.io/0.9.10\n","npm http"," 304 https://registry.npmjs.org/winston/0.3.4\n","npm http 304 https://registry.npmjs.org/charm/0.0.5\n","npm http"," 304 https://registry.npmjs.org/js-yaml/0.3.5\n","npm http 304"," https://registry.npmjs.org/buffer-browserify\n","npm http"," 304 https://registry.npmjs.org/detective\n","npm"," ","http"," ","304"," https://registry.npmjs.org/commander\n","npm"," ","http"," ","304"," https://registry.npmjs.org/glob/3.0.1\n","npm"," ","http GET https://registry.npmjs.org/mkdirp\n","npm http"," GET https://registry.npmjs.org/esprima\nnpm"," http GET https://registry.npmjs.org/base64-js/0.0.2\n","npm http"," GET https://registry.npmjs.org/concat-stream/0.0.8\n","npm http ","GET https://registry.npmjs.org/wordwrap\n","npm http 304"," https://registry.npmjs.org/async/0.1.15\n","npm http ","304 https://registry.npmjs.org/jsonify\n","npm ","http 304 https://registry.npmjs.org/underscore\n","npm ","http 304 https://registry.npmjs.org/styled_string\n","npm http"," 304 https://registry.npmjs.org/backbone\n","npm ","http 200 https://registry.npmjs.org/rimraf\n","npm http"," GET https://registry.npmjs.org/rimraf/-/rimraf-2.1.0.tgz\n","npm http 304"," https://registry.npmjs.org/colors\n","npm http"," 304 https://registry.npmjs.org/express/2.5.10\n","npm ","http"," 304 https://registry.npmjs.org/fireworm\n","npm http ","304 https://registry.npmjs.org/mustache/0.4.0\n","npm ","WARN package.json mustache@0.4.0 No README.md file found!\n","npm http"," 304 https://registry.npmjs.org/mkdirp\n","npm ","http 304 https://registry.npmjs.org/esprima\n","npm http ","304 https://registry.npmjs.org/concat-stream/0.0.8\n","npm http"," 304 https://registry.npmjs.org/base64-js/0.0.2\n","npm http ","304 https://registry.npmjs.org/wordwrap\n","npm http ","200 https://registry.npmjs.org/rimraf/-/rimraf-2.1.0.tgz\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/graceful-fs\n","npm http"," GET https://registry.npmjs.org/minimatch\n","npm http"," GET https://registry.npmjs.org/minimatch\n","npm http ","GET https://registry.npmjs.org/async\n","npm ","http GET https://registry.npmjs.org/fast-list\n","npm http"," GET https://registry.npmjs.org/connect\n","npm http"," GET https://registry.npmjs.org/socket.io-client/0.9.10\n","npm http"," GET https://registry.npmjs.org/graceful-fs\n","npm http"," GET https://registry.npmjs.org/keypress\n","npm ","http GET https://registry.npmjs.org/mime/1.2.4\n","npm ","http GET https://registry.npmjs.org/qs\n","npm http"," GET https://registry.npmjs.org/mkdirp/0.3.0\n","npm http"," GET https://registry.npmjs.org/set\n","npm ","http GET https://registry.npmjs.org/redis/0.7.2\n","npm ","http GET https://registry.npmjs.org/inherits\n","npm http"," GET https://registry.npmjs.org/policyfile/0.0.4\n","npm http ","GET https://registry.npmjs.org/eyes\n","npm ","http GET https://registry.npmjs.org/loggly\n","npm http ","GET https://registry.npmjs.org/pkginfo\n","npm ","http 304 https://registry.npmjs.org/async\n","npm http 304 https://registry.npmjs.org/graceful-fs\n","npm http"," 304 https://registry.npmjs.org/minimatch\n","npm http"," 304 https://registry.npmjs.org/fast-list\n","npm ","http 304 https://registry.npmjs.org/minimatch\n","npm http ","304 https://registry.npmjs.org/connect\n","npm ","WARN package.json connect@1.9.2 No README.md file found!\n","npm ","http 304 https://registry.npmjs.org/socket.io-client/0.9.10\n","npm http"," 304 https://registry.npmjs.org/graceful-fs\n","npm http"," 304 https://registry.npmjs.org/keypress\n","npm"," http 304 https://registry.npmjs.org/mime/1.2.4\n","npm http"," 304 https://registry.npmjs.org/qs\n","npm http"," 304 https://registry.npmjs.org/mkdirp/0.3.0\n","npm"," http 304"," https://registry.npmjs.org/set\n","npm ","http 304 https://registry.npmjs.org/inherits\n","npm http"," 304 https://registry.npmjs.org/redis/0.7.2\n","npm"," http GET https://registry.npmjs.org/formidable\n","npm"," http GET https://registry.npmjs.org/lru-cache\n","npm ","http GET https://registry.npmjs.org/sigmund\n","npm ","http GET https://registry.npmjs.org/lru-cache\n","npm http"," 304 https://registry.npmjs.org/policyfile/0.0.4\n","npm http 304 https://registry.npmjs.org/pkginfo\n","npm ","http 304 https://registry.npmjs.org/loggly\n","npm http"," 304 https://registry.npmjs.org/eyes\n","npm http"," GET https://registry.npmjs.org/hiredis\n","npm"," http 304 https://registry.npmjs.org/lru-cache\n","npm http ","GET https://registry.npmjs.org/timespan\n","npm http"," GET https://registry.npmjs.org/request\n","npm http ","GET https://registry.npmjs.org/ws\n","npm http"," GET https://registry.npmjs.org/uglify-js/1.2.5\n","npm ","http GET https://registry.npmjs.org/active-x-obfuscator/0.0.1\n","npm ","http GET https://registry.npmjs.org/xmlhttprequest/1.4.2\n","npm"," ","http"," ","304"," https://registry.npmjs.org/lru-cache\n","npm ","http 304 https://registry.npmjs.org/sigmund\n","npm"," ","http"," ","304 https://registry.npmjs.org/ws\n","npm ","http 304 https://registry.npmjs.org/request\n","npm"," ","http"," ","304"," https://registry.npmjs.org/uglify-js/1.2.5\n","npm"," ","http"," ","304"," https://registry.npmjs.org/active-x-obfuscator/0.0.1\n","npm http 304 https://registry.npmjs.org/xmlhttprequest/1.4.2\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/zeparser/0.0.5\n","npm"," http GET https://registry.npmjs.org/commander\n","npm ","http GET https://registry.npmjs.org/tinycolor\n","npm http"," GET https://registry.npmjs.org/options\n","npm"," ","http"," ","304 https://registry.npmjs.org/formidable\n","npm"," ","http"," ","304 https://registry.npmjs.org/tinycolor\n","npm"," ","http"," ","304"," https://registry.npmjs.org/hiredis\n","npm ","WARN package.json hiredis@0.1.14 No README.md file found!\n","\n> hiredis@0.1.14 preinstall /tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis\n> make || gmake\n\n","npm"," ","http 304 https://registry.npmjs.org/timespan\n","cd deps/hiredis && make static\n","make[1]: Entering directory `/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\ncc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb net.c\n","npm http 304 https://registry.npmjs.org/options\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb hiredis.c\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb sds.c\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb async.c\n","ar rcs libhiredis.a net.o hiredis.o sds.o async.o\n","make[1]: Leaving directory `/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\n","node-waf configure build\n","npm ","http 304 https://registry.npmjs.org/zeparser/0.0.5\n","npm http"," 304 https://registry.npmjs.org/commander\n","\n> ws@0.4.25 install /tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541/node_modules/testem/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws\n> (node-gyp rebuild 2> builderror.log) || (exit 0)\n\n","Traceback (most recent call last):\n File \"/home/testling/installs/node-v0.8.15/bin/node-waf\", line 14, in <module>\n import Scripting\n File \"/home/testling/installs/node-v0.8.15/bin/../lib/node/wafadmin/Scripting.py\", line 146\n except Utils.WafError, e:\n ^\nSyntaxError: invalid syntax\n","make: *** [all] Error 1\n","cd deps/hiredis && gmake static\n","gmake[1]: Entering directory `/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\ngmake[1]: Nothing to be done for `static'.\n","gmake[1]: Leaving directory `/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\n","node-waf configure build\n","Traceback (most recent call last):\n File \"/home/testling/installs/node-v0.8.15/bin/node-waf\", line 14, in <module>\n import Scripting\n File \"/home/testling/installs/node-v0.8.15/bin/../lib/node/wafadmin/Scripting.py\", line 146\n except Utils.WafError, e:\n ^\nSyntaxError: invalid syntax\n","gmake: *** [all] Error 1\n","npm"," ","WARN"," ","optional dep failed, continuing"," hiredis@0.1.14\n","to-array@0.1.3 node_modules/to-array\n\ntape@0.1.3 node_modules/tape\n├── deep-equal@0.0.0\n├── defined@0.0.0\n└── jsonify@0.0.0\n\nbrowserify@1.16.6 node_modules/browserify\n├── nub@0.0.0\n├── commondir@0.0.1\n├── vm-browserify@0.0.1\n├── crypto-browserify@0.1.2\n├── resolve@0.2.3\n├── coffee-script@1.4.0\n├── deputy@0.0.4 (mkdirp@0.3.4)\n├── http-browserify@0.1.6 (concat-stream@0.0.8)\n├── buffer-browserify@0.0.4 (base64-js@0.0.2)\n├── optimist@0.3.5 (wordwrap@0.0.2)\n├── syntax-error@0.0.0 (esprima@0.9.9)\n└── detective@0.2.1 (esprima@0.9.9)\n\ntestem@0.2.50 node_modules/testem\n├── styled_string@0.0.1\n├── colors@0.6.0-1\n├── mustache@0.4.0\n├── charm@0.0.5\n├── backbone@0.9.9\n├── async@0.1.15\n├── underscore@1.4.3\n├── js-yaml@0.3.5\n├── rimraf@2.1.0 (graceful-fs@1.1.14)\n├── commander@1.1.1 (keypress@0.1.0)\n├── glob@3.0.1 (inherits@1.0.0, graceful-fs@1.1.14, fast-list@1.0.2, minimatch@0.1.5)\n├── fireworm@0.0.8 (set@1.0.0, async@0.1.22, minimatch@0.2.9)\n├── express@2.5.10 (qs@0.4.2, mkdirp@0.3.0, mime@1.2.4, connect@1.9.2)\n├── winston@0.3.4 (eyes@0.1.8, pkginfo@0.2.3, loggly@0.3.11)\n└── socket.io@0.9.10 (policyfile@0.0.4, redis@0.7.2, socket.io-client@0.9.10)\n"]}}
|
|
43
|
+
,
|
|
44
|
+
{"id":"ccc87f2e39902598d0895524bd1b0af9","key":["Colingo/valid-schema.git","bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291"],"value":{"_id":"ccc87f2e39902598d0895524bd1b0af9","_rev":"1-fd584f457f90e32b6580df54636b6638","type":"bundle","time":1355971588427,"id":"1355971588426.a384c25f","commit":{"id":"bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291","dir":"/tmp/ci/work/bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291","repo":"Colingo/valid-schema.git","hash":"bed4fbe2551a4be02a5169086c1754ad5bd73a48","branch":"master"},"output":["npm"," ","http ","GET"," https://registry.npmjs.org/to-array\n","npm http"," GET https://registry.npmjs.org/testem\n","npm http"," GET https://registry.npmjs.org/tape\n","npm ","http GET https://registry.npmjs.org/browserify\n","npm http"," 304 https://registry.npmjs.org/tape\n","npm"," http GET https://registry.npmjs.org/tape/-/tape-0.1.3.tgz\n","npm http 304"," https://registry.npmjs.org/browserify\n","npm"," http 200 https://registry.npmjs.org/tape/-/tape-0.1.3.tgz\n","npm"," http 200 https://registry.npmjs.org/testem\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/testem/-/testem-0.2.50.tgz\n","npm"," http 200 https://registry.npmjs.org/testem/-/testem-0.2.50.tgz\n","npm"," http 200 https://registry.npmjs.org/to-array\n","npm http"," GET https://registry.npmjs.org/to-array/-/to-array-0.1.3.tgz\n","npm ","http 200 https://registry.npmjs.org/to-array/-/to-array-0.1.3.tgz\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/jsonify\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/defined\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/deep-equal\n","npm"," http 304 https://registry.npmjs.org/jsonify\n","npm http"," 304 https://registry.npmjs.org/defined\n","npm http ","304 https://registry.npmjs.org/deep-equal\n","npm http"," ","GET"," https://registry.npmjs.org/detective\n","npm ","http GET https://registry.npmjs.org/buffer-browserify\n","npm"," ","http GET https://registry.npmjs.org/coffee-script\n","npm ","http GET https://registry.npmjs.org/deputy\n","npm http"," GET https://registry.npmjs.org/nub\n","npm"," http GET https://registry.npmjs.org/resolve\n","npm ","http ","GET https://registry.npmjs.org/commondir\n","npm ","http GET https://registry.npmjs.org/syntax-error\n","npm ","http GET https://registry.npmjs.org/vm-browserify\n","npm http"," GET https://registry.npmjs.org/optimist\n","npm ","http GET https://registry.npmjs.org/crypto-browserify\n","npm"," http GET https://registry.npmjs.org/http-browserify\n","npm http"," 304 https://registry.npmjs.org/buffer-browserify\n","npm http"," 304 https://registry.npmjs.org/resolve\n","npm http"," 304 https://registry.npmjs.org/coffee-script\n","npm ","http 304 https://registry.npmjs.org/nub\n","npm http ","304 https://registry.npmjs.org/deputy\n","npm"," http 304 https://registry.npmjs.org/commondir\n","npm ","http 304 https://registry.npmjs.org/syntax-error\n","npm ","http 304 https://registry.npmjs.org/detective\n","npm http"," 304 https://registry.npmjs.org/vm-browserify\n","npm http"," 304 https://registry.npmjs.org/http-browserify\n","npm http"," 200 https://registry.npmjs.org/crypto-browserify\n","npm http"," GET https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-0.1.2.tgz\n","npm http"," 200 https://registry.npmjs.org/optimist\n","npm http ","200 https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-0.1.2.tgz\n","npm http ","GET https://registry.npmjs.org/mkdirp\n","npm"," http GET https://registry.npmjs.org/esprima\n","npm"," http GET https://registry.npmjs.org/wordwrap\n","npm http"," GET https://registry.npmjs.org/base64-js/0.0.2\n","npm ","http GET https://registry.npmjs.org/concat-stream/0.0.8\n","npm"," ","http"," ","304"," https://registry.npmjs.org/concat-stream/0.0.8\n","npm ","http ","304 https://registry.npmjs.org/mkdirp\n","npm ","http 304 https://registry.npmjs.org/wordwrap\n","npm ","http"," 304 https://registry.npmjs.org/base64-js/0.0.2\n","npm ","http 304 https://registry.npmjs.org/esprima\n","npm ","http GET https://registry.npmjs.org/mustache/0.4.0\n","npm ","http GET https://registry.npmjs.org/winston/0.3.4\n","npm ","http GET https://registry.npmjs.org/express/2.5.10\n","npm http"," GET https://registry.npmjs.org/socket.io/0.9.10\n","npm http"," GET https://registry.npmjs.org/js-yaml/0.3.5\n","npm ","http GET https://registry.npmjs.org/glob/3.0.1\n","npm ","http GET https://registry.npmjs.org/charm/0.0.5\n","npm ","http GET https://registry.npmjs.org/rimraf\n","npm ","http GET https://registry.npmjs.org/styled_string\n","npm ","http GET https://registry.npmjs.org/async/0.1.15\n","npm"," http"," ","GET https://registry.npmjs.org/underscore\n","npm ","http GET https://registry.npmjs.org/backbone\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/fireworm\n","npm"," ","http"," ","GET https://registry.npmjs.org/colors\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/commander\n","npm"," ","http"," ","200 https://registry.npmjs.org/mustache/0.4.0\n","npm ","http GET https://registry.npmjs.org/mustache/-/mustache-0.4.0.tgz\n","npm http ","200 https://registry.npmjs.org/js-yaml/0.3.5\n","npm http ","200 https://registry.npmjs.org/winston/0.3.4\n","npm ","http GET https://registry.npmjs.org/js-yaml/-/js-yaml-0.3.5.tgz\n","npm ","http GET https://registry.npmjs.org/winston/-/winston-0.3.4.tgz\n","npm http"," 200 https://registry.npmjs.org/glob/3.0.1\n","npm http ","200 https://registry.npmjs.org/express/2.5.10\n","npm ","http GET https://registry.npmjs.org/glob/-/glob-3.0.1.tgz\n","npm http"," 200 https://registry.npmjs.org/socket.io/0.9.10\n","npm ","http GET https://registry.npmjs.org/express/-/express-2.5.10.tgz\nnpm http GET https://registry.npmjs.org/socket.io/-/socket.io-0.9.10.tgz\n","npm ","http 200 https://registry.npmjs.org/charm/0.0.5\n","npm ","http GET https://registry.npmjs.org/charm/-/charm-0.0.5.tgz\n","npm ","http 200 https://registry.npmjs.org/rimraf\n","npm ","http 200 https://registry.npmjs.org/styled_string\n","npm http"," 200 https://registry.npmjs.org/async/0.1.15\n","npm ","http GET https://registry.npmjs.org/async/-/async-0.1.15.tgz\n","npm ","http GET https://registry.npmjs.org/rimraf/-/rimraf-2.0.3.tgz\n","npm"," http GET"," https://registry.npmjs.org/styled_string/-/styled_string-0.0.1.tgz\n","npm http"," 200 https://registry.npmjs.org/underscore\n","npm ","http GET https://registry.npmjs.org/underscore/-/underscore-1.4.3.tgz\n","npm http"," 304 https://registry.npmjs.org/colors\n","npm http"," 200 https://registry.npmjs.org/mustache/-/mustache-0.4.0.tgz\n","npm http ","200 https://registry.npmjs.org/fireworm\n","npm http"," GET https://registry.npmjs.org/fireworm/-/fireworm-0.0.8.tgz\n","npm http"," 200 https://registry.npmjs.org/js-yaml/-/js-yaml-0.3.5.tgz\n","npm ","WARN package.json mustache@0.4.0 No README.md file found!\n","npm http ","200 https://registry.npmjs.org/backbone\n","npm ","http GET https://registry.npmjs.org/backbone/-/backbone-0.9.9.tgz\n","npm http"," 200 https://registry.npmjs.org/winston/-/winston-0.3.4.tgz\n","npm ","http 200 https://registry.npmjs.org/glob/-/glob-3.0.1.tgz\n","npm http"," 200 https://registry.npmjs.org/express/-/express-2.5.10.tgz\n","npm http"," 200 https://registry.npmjs.org/socket.io/-/socket.io-0.9.10.tgz\n","npm http"," 200 https://registry.npmjs.org/charm/-/charm-0.0.5.tgz\n","npm ","http 200 https://registry.npmjs.org/commander\n","npm http ","200 https://registry.npmjs.org/styled_string/-/styled_string-0.0.1.tgz\n","npm ","http 200 https://registry.npmjs.org/rimraf/-/rimraf-2.0.3.tgz\n","npm ","http 200 https://registry.npmjs.org/async/-/async-0.1.15.tgz\n","npm http"," 200 https://registry.npmjs.org/backbone/-/backbone-0.9.9.tgz\n","npm ","http 200 https://registry.npmjs.org/fireworm/-/fireworm-0.0.8.tgz\n","npm ","http 200 https://registry.npmjs.org/underscore/-/underscore-1.4.3.tgz\n","npm ","http GET https://registry.npmjs.org/graceful-fs\n","npm ","http GET https://registry.npmjs.org/minimatch\n","npm ","http GET https://registry.npmjs.org/fast-list\n","npm http"," GET https://registry.npmjs.org/minimatch\n","npm ","http GET https://registry.npmjs.org/graceful-fs\n","npm ","http GET https://registry.npmjs.org/set\n","npm"," http GET https://registry.npmjs.org/inherits\n","npm"," http GET https://registry.npmjs.org/socket.io-client/0.9.10\n","npm http"," GET https://registry.npmjs.org/redis/0.7.2\n","npm ","http GET https://registry.npmjs.org/connect\n","npm ","http GET https://registry.npmjs.org/mime/1.2.4\n","npm ","http GET https://registry.npmjs.org/mkdirp/0.3.0\n","npm ","http GET https://registry.npmjs.org/keypress\n","npm"," http GET https://registry.npmjs.org/eyes\n","npm ","http GET https://registry.npmjs.org/loggly\n","npm http"," GET https://registry.npmjs.org/async\n","npm ","http GET https://registry.npmjs.org/qs\n","npm ","http GET https://registry.npmjs.org/policyfile/0.0.4\n","npm http"," GET https://registry.npmjs.org/pkginfo\n","npm http ","200 https://registry.npmjs.org/fast-list\n","npm ","http GET https://registry.npmjs.org/fast-list/-/fast-list-1.0.2.tgz\n","npm ","http 200 https://registry.npmjs.org/graceful-fs\n","npm ","http GET https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.14.tgz\n","npm http"," ","200"," https://registry.npmjs.org/graceful-fs\n","npm http"," 200 https://registry.npmjs.org/set\n","npm http"," GET https://registry.npmjs.org/set/-/set-1.0.0.tgz\n","npm http"," 200 https://registry.npmjs.org/minimatch\n","npm ","http GET https://registry.npmjs.org/minimatch/-/minimatch-0.2.9.tgz\n","npm http"," 200 https://registry.npmjs.org/inherits\n","npm ","http GET https://registry.npmjs.org/inherits/-/inherits-1.0.0.tgz\n","npm ","http 304 https://registry.npmjs.org/connect\n","npm http"," 200 https://registry.npmjs.org/socket.io-client/0.9.10\n","npm ","http 200 https://registry.npmjs.org/minimatch\n","npm"," ","http"," ","GET https://registry.npmjs.org/socket.io-client/-/socket.io-client-0.9.10.tgz\n","npm ","http 304 https://registry.npmjs.org/mime/1.2.4\n","npm ","http 200 https://registry.npmjs.org/redis/0.7.2\n","npm http"," GET https://registry.npmjs.org/minimatch/-/minimatch-0.1.5.tgz\n","npm http"," GET https://registry.npmjs.org/redis/-/redis-0.7.2.tgz\n","npm ","WARN package.json connect@1.9.2 No README.md file found!\n","npm http"," 304 https://registry.npmjs.org/mkdirp/0.3.0\n","npm"," http 304 https://registry.npmjs.org/keypress\n","npm ","http 304 https://registry.npmjs.org/qs\n","npm http"," 200 https://registry.npmjs.org/eyes\n","npm http"," GET https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz\n","npm ","http"," 200 https://registry.npmjs.org/loggly\n","npm http"," 304 https://registry.npmjs.org/policyfile/0.0.4\n","npm http"," GET https://registry.npmjs.org/loggly/-/loggly-0.3.11.tgz\n","npm http ","200 https://registry.npmjs.org/fast-list/-/fast-list-1.0.2.tgz\n","npm http"," 304 https://registry.npmjs.org/pkginfo\n","npm http 200"," https://registry.npmjs.org/set/-/set-1.0.0.tgz\n","npm ","http 200 https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.14.tgz\n","npm http"," 200 https://registry.npmjs.org/minimatch/-/minimatch-0.2.9.tgz\n","npm ","http 200 https://registry.npmjs.org/inherits/-/inherits-1.0.0.tgz\n","npm http"," 200 https://registry.npmjs.org/socket.io-client/-/socket.io-client-0.9.10.tgz\n","npm"," http 200 https://registry.npmjs.org/minimatch/-/minimatch-0.1.5.tgz\n","npm http"," 200 https://registry.npmjs.org/redis/-/redis-0.7.2.tgz\n","npm http 200"," https://registry.npmjs.org/async\n","npm"," http 200 https://registry.npmjs.org/loggly/-/loggly-0.3.11.tgz\n","npm http"," 200 https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/formidable\n","npm http"," GET https://registry.npmjs.org/lru-cache\n","npm http"," GET https://registry.npmjs.org/lru-cache\n","npm http"," GET https://registry.npmjs.org/sigmund\n","npm http ","304 https://registry.npmjs.org/formidable\n","npm http"," 200 https://registry.npmjs.org/sigmund\n","npm ","http GET https://registry.npmjs.org/sigmund/-/sigmund-1.0.0.tgz\n","npm http"," 200 https://registry.npmjs.org/lru-cache\n","npm"," http 200 https://registry.npmjs.org/lru-cache\n","npm http"," GET https://registry.npmjs.org/lru-cache/-/lru-cache-1.0.6.tgz\n","npm ","http GET https://registry.npmjs.org/lru-cache/-/lru-cache-2.0.4.tgz\n","npm"," http GET https://registry.npmjs.org/request\n","npm http"," GET https://registry.npmjs.org/timespan\n","npm http ","200 https://registry.npmjs.org/sigmund/-/sigmund-1.0.0.tgz\n","npm http ","200 https://registry.npmjs.org/lru-cache/-/lru-cache-1.0.6.tgz\n","npm http ","200 https://registry.npmjs.org/lru-cache/-/lru-cache-2.0.4.tgz\n","npm ","http 200 https://registry.npmjs.org/timespan\n","npm http"," GET https://registry.npmjs.org/timespan/-/timespan-2.2.0.tgz\n","npm ","http 200 https://registry.npmjs.org/request\n","npm http"," GET https://registry.npmjs.org/request/-/request-2.9.203.tgz\n","npm ","http 200 https://registry.npmjs.org/timespan/-/timespan-2.2.0.tgz\n","npm http"," 200 https://registry.npmjs.org/request/-/request-2.9.203.tgz\n","npm"," ","http"," ","GET https://registry.npmjs.org/hiredis\n","npm http"," 200 https://registry.npmjs.org/hiredis\n","npm http"," GET https://registry.npmjs.org/hiredis/-/hiredis-0.1.14.tgz\n","npm http ","200 https://registry.npmjs.org/hiredis/-/hiredis-0.1.14.tgz\n","npm http"," GET https://registry.npmjs.org/uglify-js/1.2.5\n","npm ","http GET https://registry.npmjs.org/xmlhttprequest/1.4.2\n","npm ","http GET https://registry.npmjs.org/ws\n","npm ","http GET https://registry.npmjs.org/active-x-obfuscator/0.0.1\n","npm ","WARN package.json hiredis@0.1.14 No README.md file found!\n","npm ","http 304 https://registry.npmjs.org/xmlhttprequest/1.4.2\n","npm http"," 304 https://registry.npmjs.org/uglify-js/1.2.5\n","npm http"," 304 https://registry.npmjs.org/active-x-obfuscator/0.0.1\n","npm http ","200 https://registry.npmjs.org/ws\n","npm http"," GET https://registry.npmjs.org/ws/-/ws-0.4.25.tgz\n","\n> hiredis@0.1.14 preinstall /tmp/ci/work/bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis\n> make || gmake\n\n","cd deps/hiredis && make static\n","make[1]: Entering directory `/tmp/ci/work/bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\ncc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb net.c\n","npm"," http 200 https://registry.npmjs.org/ws/-/ws-0.4.25.tgz\n","npm"," ","http"," ","GET https://registry.npmjs.org/zeparser/0.0.5\n","npm http ","GET https://registry.npmjs.org/commander\n","npm ","http GET https://registry.npmjs.org/options\n","npm http"," GET https://registry.npmjs.org/tinycolor\n","npm http ","304 https://registry.npmjs.org/zeparser/0.0.5\n","npm http 304"," https://registry.npmjs.org/options\n","npm ","http 304 https://registry.npmjs.org/commander\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb hiredis.c\n","npm ","http 304 https://registry.npmjs.org/tinycolor\n","\n> ws@0.4.25 install /tmp/ci/work/bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291/node_modules/testem/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws\n> (node-gyp rebuild 2> builderror.log) || (exit 0)\n\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb sds.c\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb async.c\n","ar rcs libhiredis.a net.o hiredis.o sds.o async.o\n","make[1]: Leaving directory `/tmp/ci/work/bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\n","node-waf configure build\n","Traceback (most recent call last):\n File \"/home/testling/installs/node-v0.8.15/bin/node-waf\", line 14, in <module>\n import Scripting\n File \"/home/testling/installs/node-v0.8.15/bin/../lib/node/wafadmin/Scripting.py\", line 146\n except Utils.WafError, e:\n ^\nSyntaxError: invalid syntax\n","make: *** [all] Error 1\n","cd deps/hiredis && gmake static\n","gmake[1]: Entering directory `/tmp/ci/work/bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\ngmake[1]: Nothing to be done for `static'.\n","gmake[1]: Leaving directory `/tmp/ci/work/bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\n","node-waf configure build\n","Traceback (most recent call last):\n File \"/home/testling/installs/node-v0.8.15/bin/node-waf\", line 14, in <module>\n import Scripting\n File \"/home/testling/installs/node-v0.8.15/bin/../lib/node/wafadmin/Scripting.py\", line 146\n except Utils.WafError, e:\n ^\nSyntaxError: invalid syntax\n","gmake: *** [all] Error 1\n","npm"," WARN optional dep failed, continuing hiredis@0.1.14\n","to-array@0.1.3 node_modules/to-array\n\ntape@0.1.3 node_modules/tape\n├── deep-equal@0.0.0\n├── defined@0.0.0\n└── jsonify@0.0.0\n\nbrowserify@1.16.6 node_modules/browserify\n├── nub@0.0.0\n├── commondir@0.0.1\n├── vm-browserify@0.0.1\n├── crypto-browserify@0.1.2\n├── resolve@0.2.3\n├── coffee-script@1.4.0\n├── deputy@0.0.4 (mkdirp@0.3.4)\n├── http-browserify@0.1.6 (concat-stream@0.0.8)\n├── buffer-browserify@0.0.4 (base64-js@0.0.2)\n├── optimist@0.3.5 (wordwrap@0.0.2)\n├── syntax-error@0.0.0 (esprima@0.9.9)\n└── detective@0.2.1 (esprima@0.9.9)\n\ntestem@0.2.50 node_modules/testem\n├── styled_string@0.0.1\n├── mustache@0.4.0\n├── colors@0.6.0-1\n├── charm@0.0.5\n├── backbone@0.9.9\n├── async@0.1.15\n├── underscore@1.4.3\n├── js-yaml@0.3.5\n├── commander@1.1.1 (keypress@0.1.0)\n├── rimraf@2.0.3 (graceful-fs@1.1.14)\n├── express@2.5.10 (mkdirp@0.3.0, mime@1.2.4, qs@0.4.2, connect@1.9.2)\n├── glob@3.0.1 (inherits@1.0.0, graceful-fs@1.1.14, fast-list@1.0.2, minimatch@0.1.5)\n├── fireworm@0.0.8 (set@1.0.0, async@0.1.22, minimatch@0.2.9)\n├── winston@0.3.4 (eyes@0.1.8, pkginfo@0.2.3, loggly@0.3.11)\n└── socket.io@0.9.10 (policyfile@0.0.4, redis@0.7.2, socket.io-client@0.9.10)\n","Expressions in require() statements:\n"," require(file)\n","\n","/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:459\n"," throw moduleError('Cannot find module');\n"," "," "," "," "," ^\n","Error: Cannot find module: \"./lib/default_stream\" from directory \"/tmp/ci/work/bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291/test\" while processing file /tmp/ci/work/bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291/test/bundle.js\n at moduleError (/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:420:16)\n at Function.Wrap.require (/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:459:19)\n at Function.module.exports.Object.keys.forEach.self.(anonymous function) [as require] (/home/testling/projects/testling-ci/git/node_modules/browserify/index.js:158:28)\n at Wrap.require (/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:541:14)\n at Array.forEach (native)\n at Function.Wrap.require (/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:533:27)\n at Function.module.exports.Object.keys.forEach.self.(anonymous function) [as require] (/home/testling/projects/testling-ci/git/node_modules/browserify/index.js:158:28)\n at /home/testling/projects/testling-ci/git/bin/bundle.js:62:12\n at Array.forEach (native)\n at Object.<anonymous> (/home/testling/projects/testling-ci/git/bin/bundle.js:61:7)\n","\nerror creating bundle\n"]}}
|
|
45
|
+
,
|
|
46
|
+
{"id":"ccc87f2e39902598d0895524bd0a81a8","key":["Colingo/valid-schema.git","9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971"],"value":{"_id":"ccc87f2e39902598d0895524bd0a81a8","_rev":"1-2804e4d885d94f67d8ef2e53d31d5771","type":"test","time":1355342972053,"commit":{"id":"9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","dir":"/tmp/ci/work/9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","repo":"Colingo/valid-schema.git","hash":"9e83702a1bcd533635df5c7cd8390239c02913f4","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342944066.ec53ec1","browser":"safari/5.1","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
47
|
+
,
|
|
48
|
+
{"id":"ccc87f2e39902598d0895524bd0a7b2a","key":["Colingo/valid-schema.git","9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971"],"value":{"_id":"ccc87f2e39902598d0895524bd0a7b2a","_rev":"1-3f5c237bea258d2c8b767278d05e0741","type":"test","time":1355342967212,"commit":{"id":"9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","dir":"/tmp/ci/work/9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","repo":"Colingo/valid-schema.git","hash":"9e83702a1bcd533635df5c7cd8390239c02913f4","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342944066.ec53ec1","browser":"opera/12.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
49
|
+
,
|
|
50
|
+
{"id":"ccc87f2e39902598d0895524bd0a6c3e","key":["Colingo/valid-schema.git","9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971"],"value":{"_id":"ccc87f2e39902598d0895524bd0a6c3e","_rev":"1-90b5a3798ded4e5e979da8a1bdeb474e","type":"test","time":1355342962096,"commit":{"id":"9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","dir":"/tmp/ci/work/9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","repo":"Colingo/valid-schema.git","hash":"9e83702a1bcd533635df5c7cd8390239c02913f4","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342944066.ec53ec1","browser":"chrome/canary","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
51
|
+
,
|
|
52
|
+
{"id":"ccc87f2e39902598d0895524bd0a6c33","key":["Colingo/valid-schema.git","9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971"],"value":{"_id":"ccc87f2e39902598d0895524bd0a6c33","_rev":"1-5a705132434b46d2b73f7e6fe7cf6ec3","type":"test","time":1355342957483,"commit":{"id":"9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","dir":"/tmp/ci/work/9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","repo":"Colingo/valid-schema.git","hash":"9e83702a1bcd533635df5c7cd8390239c02913f4","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342944066.ec53ec1","browser":"chrome/22.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
53
|
+
,
|
|
54
|
+
{"id":"ccc87f2e39902598d0895524bd0a6c28","key":["Colingo/valid-schema.git","9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971"],"value":{"_id":"ccc87f2e39902598d0895524bd0a6c28","_rev":"1-9ad8fe3db87704bfaa4661bf328d275a","type":"test","time":1355342954792,"commit":{"id":"9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","dir":"/tmp/ci/work/9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","repo":"Colingo/valid-schema.git","hash":"9e83702a1bcd533635df5c7cd8390239c02913f4","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342944066.ec53ec1","browser":"firefox/nightly","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
55
|
+
,
|
|
56
|
+
{"id":"ccc87f2e39902598d0895524bd0a69f8","key":["Colingo/valid-schema.git","9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971"],"value":{"_id":"ccc87f2e39902598d0895524bd0a69f8","_rev":"1-a738458dcd33468b2d21b035c9d66252","type":"test","time":1355342953580,"commit":{"id":"9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","dir":"/tmp/ci/work/9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","repo":"Colingo/valid-schema.git","hash":"9e83702a1bcd533635df5c7cd8390239c02913f4","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342944066.ec53ec1","browser":"firefox/15.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
57
|
+
,
|
|
58
|
+
{"id":"ccc87f2e39902598d0895524bd0a638d","key":["Colingo/valid-schema.git","9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971"],"value":{"_id":"ccc87f2e39902598d0895524bd0a638d","_rev":"1-58328bdc8cf698364a58f7afc72d9b7e","type":"test","time":1355342951414,"commit":{"id":"9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","dir":"/tmp/ci/work/9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","repo":"Colingo/valid-schema.git","hash":"9e83702a1bcd533635df5c7cd8390239c02913f4","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342944066.ec53ec1","browser":"iexplore/9.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
59
|
+
,
|
|
60
|
+
{"id":"ccc87f2e39902598d0895524bd0a54ab","key":["Colingo/valid-schema.git","9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971"],"value":{"_id":"ccc87f2e39902598d0895524bd0a54ab","_rev":"1-0ef26c3c4cade634eeff28cb3cebfd69","type":"test","time":1355342946708,"commit":{"id":"9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","dir":"/tmp/ci/work/9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","repo":"Colingo/valid-schema.git","hash":"9e83702a1bcd533635df5c7cd8390239c02913f4","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342944066.ec53ec1","browser":"iexplore/8.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"not ok 1 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"not ok 2 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 0\\n\\n\"]\n","[\"stdout\",\"# fail 2\\n\\n\"]\n"]}}
|
|
61
|
+
,
|
|
62
|
+
{"id":"ccc87f2e39902598d0895524bd0a4827","key":["Colingo/valid-schema.git","94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986"],"value":{"_id":"ccc87f2e39902598d0895524bd0a4827","_rev":"1-a450d8883133a069a9c791745adfb64f","type":"test","time":1355342828797,"commit":{"id":"94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","dir":"/tmp/ci/work/94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","repo":"Colingo/valid-schema.git","hash":"94553b0cb58b6e987b101ee0e1b19829483b40bf","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342809092.9161426","browser":"safari/5.1","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
63
|
+
,
|
|
64
|
+
{"id":"ccc87f2e39902598d0895524bd0a3897","key":["Colingo/valid-schema.git","94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986"],"value":{"_id":"ccc87f2e39902598d0895524bd0a3897","_rev":"1-b7ae9464fd44ea1b9eeec24ce39b5803","type":"test","time":1355342827483,"commit":{"id":"94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","dir":"/tmp/ci/work/94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","repo":"Colingo/valid-schema.git","hash":"94553b0cb58b6e987b101ee0e1b19829483b40bf","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342809092.9161426","browser":"opera/12.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
65
|
+
,
|
|
66
|
+
{"id":"ccc87f2e39902598d0895524bd0a309f","key":["Colingo/valid-schema.git","94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986"],"value":{"_id":"ccc87f2e39902598d0895524bd0a309f","_rev":"1-06ee417cb755b580fa9eb83507280406","type":"test","time":1355342825779,"commit":{"id":"94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","dir":"/tmp/ci/work/94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","repo":"Colingo/valid-schema.git","hash":"94553b0cb58b6e987b101ee0e1b19829483b40bf","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342809092.9161426","browser":"chrome/canary","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
67
|
+
,
|
|
68
|
+
{"id":"ccc87f2e39902598d0895524bd0a263c","key":["Colingo/valid-schema.git","94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986"],"value":{"_id":"ccc87f2e39902598d0895524bd0a263c","_rev":"1-c7e42770f8f9cfd9f9170752c7806ab5","type":"test","time":1355342824075,"commit":{"id":"94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","dir":"/tmp/ci/work/94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","repo":"Colingo/valid-schema.git","hash":"94553b0cb58b6e987b101ee0e1b19829483b40bf","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342809092.9161426","browser":"chrome/22.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
69
|
+
,
|
|
70
|
+
{"id":"ccc87f2e39902598d0895524bd0a256e","key":["Colingo/valid-schema.git","94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986"],"value":{"_id":"ccc87f2e39902598d0895524bd0a256e","_rev":"1-03389997737a684771d4c3771f0d57ad","type":"test","time":1355342818898,"commit":{"id":"94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","dir":"/tmp/ci/work/94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","repo":"Colingo/valid-schema.git","hash":"94553b0cb58b6e987b101ee0e1b19829483b40bf","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342809092.9161426","browser":"firefox/nightly","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
71
|
+
,
|
|
72
|
+
{"id":"ccc87f2e39902598d0895524bd0a24f9","key":["Colingo/valid-schema.git","94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986"],"value":{"_id":"ccc87f2e39902598d0895524bd0a24f9","_rev":"1-7b3a81bc1ac16183b07c63a577d0f228","type":"test","time":1355342817097,"commit":{"id":"94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","dir":"/tmp/ci/work/94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","repo":"Colingo/valid-schema.git","hash":"94553b0cb58b6e987b101ee0e1b19829483b40bf","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342809092.9161426","browser":"firefox/15.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
73
|
+
,
|
|
74
|
+
{"id":"ccc87f2e39902598d0895524bd0a208e","key":["Colingo/valid-schema.git","94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986"],"value":{"_id":"ccc87f2e39902598d0895524bd0a208e","_rev":"1-9ba55a6a70f42251849f896ef7eaccc2","type":"test","time":1355342815402,"commit":{"id":"94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","dir":"/tmp/ci/work/94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","repo":"Colingo/valid-schema.git","hash":"94553b0cb58b6e987b101ee0e1b19829483b40bf","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342809092.9161426","browser":"iexplore/9.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
75
|
+
,
|
|
76
|
+
{"id":"ccc87f2e39902598d0895524bd0a1b5a","key":["Colingo/valid-schema.git","94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986"],"value":{"_id":"ccc87f2e39902598d0895524bd0a1b5a","_rev":"1-aadbb46a84e375770ef76586ec7d4fb1","type":"test","time":1355342811514,"commit":{"id":"94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","dir":"/tmp/ci/work/94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","repo":"Colingo/valid-schema.git","hash":"94553b0cb58b6e987b101ee0e1b19829483b40bf","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342809092.9161426","browser":"iexplore/8.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"not ok 1 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"not ok 2 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 0\\n\\n\"]\n","[\"stdout\",\"# fail 2\\n\\n\"]\n"]}}
|
|
77
|
+
,
|
|
78
|
+
{"id":"ccc87f2e39902598d0895524bd0ba8a5","key":["Colingo/valid-schema.git","8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438"],"value":{"_id":"ccc87f2e39902598d0895524bd0ba8a5","_rev":"1-3647837d0d4955bb98be7c2088e9d696","type":"test","time":1355353782138,"commit":{"id":"8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","dir":"/tmp/ci/work/8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","repo":"Colingo/valid-schema.git","hash":"8d7d08db6842dc8819f402d25a872e9df1aa0fab","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353752545.d3e0aa22","browser":"safari/5.1","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
79
|
+
,
|
|
80
|
+
{"id":"ccc87f2e39902598d0895524bd0ba4c2","key":["Colingo/valid-schema.git","8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438"],"value":{"_id":"ccc87f2e39902598d0895524bd0ba4c2","_rev":"1-b04f58fb4aec7016fe4c83b61e9ee4eb","type":"test","time":1355353770813,"commit":{"id":"8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","dir":"/tmp/ci/work/8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","repo":"Colingo/valid-schema.git","hash":"8d7d08db6842dc8819f402d25a872e9df1aa0fab","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353752545.d3e0aa22","browser":"opera/12.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
81
|
+
,
|
|
82
|
+
{"id":"ccc87f2e39902598d0895524bd0b9bd4","key":["Colingo/valid-schema.git","8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438"],"value":{"_id":"ccc87f2e39902598d0895524bd0b9bd4","_rev":"1-66d1421ce3afd2ced7f2d1ff5c4f8d47","type":"test","time":1355353768938,"commit":{"id":"8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","dir":"/tmp/ci/work/8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","repo":"Colingo/valid-schema.git","hash":"8d7d08db6842dc8819f402d25a872e9df1aa0fab","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353752545.d3e0aa22","browser":"chrome/canary","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
83
|
+
,
|
|
84
|
+
{"id":"ccc87f2e39902598d0895524bd0b8f69","key":["Colingo/valid-schema.git","8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438"],"value":{"_id":"ccc87f2e39902598d0895524bd0b8f69","_rev":"1-2b1bbc5e240abbea6d4e94a2f8be0bc1","type":"test","time":1355353767749,"commit":{"id":"8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","dir":"/tmp/ci/work/8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","repo":"Colingo/valid-schema.git","hash":"8d7d08db6842dc8819f402d25a872e9df1aa0fab","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353752545.d3e0aa22","browser":"chrome/22.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
85
|
+
,
|
|
86
|
+
{"id":"ccc87f2e39902598d0895524bd0b8a2d","key":["Colingo/valid-schema.git","8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438"],"value":{"_id":"ccc87f2e39902598d0895524bd0b8a2d","_rev":"1-3ccfb98d827ba0ddc7bd8339326fdd75","type":"test","time":1355353763981,"commit":{"id":"8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","dir":"/tmp/ci/work/8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","repo":"Colingo/valid-schema.git","hash":"8d7d08db6842dc8819f402d25a872e9df1aa0fab","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353752545.d3e0aa22","browser":"firefox/nightly","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
87
|
+
,
|
|
88
|
+
{"id":"ccc87f2e39902598d0895524bd0b7b96","key":["Colingo/valid-schema.git","8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438"],"value":{"_id":"ccc87f2e39902598d0895524bd0b7b96","_rev":"1-3fadcb8e4d1117921bd580d8a7684511","type":"test","time":1355353762772,"commit":{"id":"8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","dir":"/tmp/ci/work/8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","repo":"Colingo/valid-schema.git","hash":"8d7d08db6842dc8819f402d25a872e9df1aa0fab","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353752545.d3e0aa22","browser":"firefox/15.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
89
|
+
,
|
|
90
|
+
{"id":"ccc87f2e39902598d0895524bd0b7afd","key":["Colingo/valid-schema.git","8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438"],"value":{"_id":"ccc87f2e39902598d0895524bd0b7afd","_rev":"1-9797d5f6ca74f7bb3e5a4e1e0046a5f5","type":"test","time":1355353760313,"commit":{"id":"8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","dir":"/tmp/ci/work/8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","repo":"Colingo/valid-schema.git","hash":"8d7d08db6842dc8819f402d25a872e9df1aa0fab","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353752545.d3e0aa22","browser":"iexplore/9.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
91
|
+
,
|
|
92
|
+
{"id":"ccc87f2e39902598d0895524bd0b729b","key":["Colingo/valid-schema.git","8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438"],"value":{"_id":"ccc87f2e39902598d0895524bd0b729b","_rev":"1-95227048dad9c65cdae8c96da266409f","type":"test","time":1355353756249,"commit":{"id":"8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","dir":"/tmp/ci/work/8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","repo":"Colingo/valid-schema.git","hash":"8d7d08db6842dc8819f402d25a872e9df1aa0fab","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353752545.d3e0aa22","browser":"iexplore/8.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"not ok 1 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"not ok 2 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"not ok 3 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"\\n1..3\\n\\n\"]\n","[\"stdout\",\"# tests 3\\n\\n\"]\n","[\"stdout\",\"# pass 0\\n\\n\"]\n","[\"stdout\",\"# fail 3\\n\\n\"]\n"]}}
|
|
93
|
+
,
|
|
94
|
+
{"id":"ccc87f2e39902598d0895524bd0e0741","key":["Colingo/valid-schema.git","82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646"],"value":{"_id":"ccc87f2e39902598d0895524bd0e0741","_rev":"1-b575091e7a55aec36b42df3eee7552de","type":"test","time":1355438975820,"commit":{"id":"82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","dir":"/tmp/ci/work/82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","repo":"Colingo/valid-schema.git","hash":"82618555a4c56e61700d6842e41f9bb0f2752d7f","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438900798.fb272e2","browser":"safari/5.1","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
95
|
+
,
|
|
96
|
+
{"id":"ccc87f2e39902598d0895524bd0e0136","key":["Colingo/valid-schema.git","82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646"],"value":{"_id":"ccc87f2e39902598d0895524bd0e0136","_rev":"1-df97869db49e54a1a1b09c00ed3f9e6f","type":"test","time":1355438975105,"commit":{"id":"82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","dir":"/tmp/ci/work/82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","repo":"Colingo/valid-schema.git","hash":"82618555a4c56e61700d6842e41f9bb0f2752d7f","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438900798.fb272e2","browser":"opera/12.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
97
|
+
,
|
|
98
|
+
{"id":"ccc87f2e39902598d0895524bd0e00f1","key":["Colingo/valid-schema.git","82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646"],"value":{"_id":"ccc87f2e39902598d0895524bd0e00f1","_rev":"1-57531cbde7a025abe083f17e52033923","type":"test","time":1355438944542,"commit":{"id":"82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","dir":"/tmp/ci/work/82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","repo":"Colingo/valid-schema.git","hash":"82618555a4c56e61700d6842e41f9bb0f2752d7f","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438900798.fb272e2","browser":"chrome/22.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
99
|
+
,
|
|
100
|
+
{"id":"ccc87f2e39902598d0895524bd0daeca","key":["Colingo/valid-schema.git","82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646"],"value":{"_id":"ccc87f2e39902598d0895524bd0daeca","_rev":"1-7dd1792383190729144832d8ae2d1f05","type":"test","time":1355438913301,"commit":{"id":"82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","dir":"/tmp/ci/work/82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","repo":"Colingo/valid-schema.git","hash":"82618555a4c56e61700d6842e41f9bb0f2752d7f","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438900798.fb272e2","browser":"firefox/15.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
101
|
+
,
|
|
102
|
+
{"id":"ccc87f2e39902598d0895524bd0da288","key":["Colingo/valid-schema.git","82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646"],"value":{"_id":"ccc87f2e39902598d0895524bd0da288","_rev":"1-2e9eec662aa8b6ddb01e2e69535ca330","type":"test","time":1355438909961,"commit":{"id":"82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","dir":"/tmp/ci/work/82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","repo":"Colingo/valid-schema.git","hash":"82618555a4c56e61700d6842e41f9bb0f2752d7f","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438900798.fb272e2","browser":"iexplore/9.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
103
|
+
,
|
|
104
|
+
{"id":"ccc87f2e39902598d0895524bd0d9324","key":["Colingo/valid-schema.git","82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646"],"value":{"_id":"ccc87f2e39902598d0895524bd0d9324","_rev":"1-058004973e2a4d354485107877cd88f6","type":"test","time":1355438903627,"commit":{"id":"82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","dir":"/tmp/ci/work/82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","repo":"Colingo/valid-schema.git","hash":"82618555a4c56e61700d6842e41f9bb0f2752d7f","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438900798.fb272e2","browser":"iexplore/8.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"not ok 1 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"not ok 2 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"not ok 3 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"\\n1..3\\n\\n\"]\n","[\"stdout\",\"# tests 3\\n\\n\"]\n","[\"stdout\",\"# pass 0\\n\\n\"]\n","[\"stdout\",\"# fail 3\\n\\n\"]\n"]}}
|
|
105
|
+
,
|
|
106
|
+
{"id":"ccc87f2e39902598d0895524bd1b0b41","key":["Colingo/valid-schema.git","5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149"],"value":{"_id":"ccc87f2e39902598d0895524bd1b0b41","_rev":"1-fb2c247df4baa6120aac1e8ca4c1e756","type":"bundle","time":1355972599332,"id":"1355972599330.655a788c","commit":{"id":"5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149","dir":"/tmp/ci/work/5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149","repo":"Colingo/valid-schema.git","hash":"5da97f7b3085ddb3b9ff7100fd8b8bd63497937f","branch":"master"},"output":["npm"," http ","GET https://registry.npmjs.org/to-array\n","npm ","http GET https://registry.npmjs.org/tape\n","npm http"," GET https://registry.npmjs.org/browserify\n","npm ","http GET https://registry.npmjs.org/testem\n","npm"," http 304 https://registry.npmjs.org/to-array\n","npm http"," 304 https://registry.npmjs.org/tape\n","npm http"," 304 https://registry.npmjs.org/browserify\n","npm http"," 304 https://registry.npmjs.org/testem\n","npm"," http GET https://registry.npmjs.org/jsonify\n","npm http ","GET https://registry.npmjs.org/deep-equal\n","npm http"," GET https://registry.npmjs.org/defined\n","npm ","http GET https://registry.npmjs.org/detective\n","npm ","http GET https://registry.npmjs.org/buffer-browserify\n","npm ","http GET https://registry.npmjs.org/deputy\n","npm ","http GET https://registry.npmjs.org/resolve\n","npm http"," GET https://registry.npmjs.org/nub\n","npm http"," GET https://registry.npmjs.org/syntax-error\n","npm http"," GET https://registry.npmjs.org/coffee-script\n","npm ","http GET https://registry.npmjs.org/commondir\n","npm ","http GET https://registry.npmjs.org/optimist\n","npm ","http GET https://registry.npmjs.org/crypto-browserify\n","npm ","http GET https://registry.npmjs.org/vm-browserify\n","npm"," ","http GET https://registry.npmjs.org/http-browserify\n","npm"," ","http"," ","304"," https://registry.npmjs.org/deep-equal\n","npm"," ","http"," ","304"," https://registry.npmjs.org/jsonify\n","npm"," ","http"," ","304 https://registry.npmjs.org/defined\n","npm ","http"," GET https://registry.npmjs.org/socket.io/0.9.10\n","npm ","http GET https://registry.npmjs.org/winston/0.3.4\n","npm ","http GET https://registry.npmjs.org/charm/0.0.5\n","npm http"," GET https://registry.npmjs.org/commander\n","npm ","http GET https://registry.npmjs.org/glob/3.0.1\n","npm ","http GET https://registry.npmjs.org/js-yaml/0.3.5\n","npm ","http GET https://registry.npmjs.org/async/0.1.15\n","npm ","http GET https://registry.npmjs.org/rimraf\n","npm ","http GET https://registry.npmjs.org/underscore\n","npm ","http GET https://registry.npmjs.org/backbone\n","npm ","http GET https://registry.npmjs.org/styled_string\n","npm"," http GET https://registry.npmjs.org/colors\n","npm"," http GET https://registry.npmjs.org/fireworm\n","npm ","http GET https://registry.npmjs.org/express/2.5.10\n","npm ","http GET https://registry.npmjs.org/mustache/0.4.0\n","npm http"," 304 https://registry.npmjs.org/deputy\n","npm http"," 304 https://registry.npmjs.org/resolve\n","npm http"," 304 https://registry.npmjs.org/nub\n","npm ","http 304 https://registry.npmjs.org/detective\n","npm http"," 304 https://registry.npmjs.org/buffer-browserify\n","npm http"," 304 https://registry.npmjs.org/syntax-error\n","npm http"," 304 https://registry.npmjs.org/coffee-script\n","npm http"," 304 https://registry.npmjs.org/commondir\n","npm http"," 304 https://registry.npmjs.org/optimist\n","npm http"," 304 https://registry.npmjs.org/crypto-browserify\n","npm http ","304 https://registry.npmjs.org/vm-browserify\n","npm http ","304 https://registry.npmjs.org/http-browserify\n","npm http"," 304 https://registry.npmjs.org/socket.io/0.9.10\n","npm ","http 304 https://registry.npmjs.org/winston/0.3.4\n","npm"," ","http"," ","304"," https://registry.npmjs.org/charm/0.0.5\n","npm"," ","http 304 https://registry.npmjs.org/commander\n","npm ","http GET https://registry.npmjs.org/esprima\n","npm ","http"," GET https://registry.npmjs.org/concat-stream/0.0.8\n","npm"," ","http ","GET https://registry.npmjs.org/mkdirp\n","npm http"," GET https://registry.npmjs.org/base64-js/0.0.2\n","npm ","http 304 https://registry.npmjs.org/js-yaml/0.3.5\n","npm ","http 304 https://registry.npmjs.org/glob/3.0.1\n","npm http"," GET https://registry.npmjs.org/wordwrap\n","npm"," ","http"," ","304"," https://registry.npmjs.org/async/0.1.15\n","npm http 304"," https://registry.npmjs.org/rimraf\n","npm ","http 304 https://registry.npmjs.org/underscore\n","npm ","http 304 https://registry.npmjs.org/styled_string\n","npm http"," 304 https://registry.npmjs.org/backbone\n","npm ","http 304 https://registry.npmjs.org/colors\n","npm http ","304 https://registry.npmjs.org/fireworm\n","npm http"," 304 https://registry.npmjs.org/express/2.5.10\n","npm ","http 304 https://registry.npmjs.org/mustache/0.4.0\n","npm ","http 304 https://registry.npmjs.org/concat-stream/0.0.8\n","npm ","WARN package.json mustache@0.4.0 No README.md file found!\n","npm http ","304 https://registry.npmjs.org/esprima\n","npm http ","304 https://registry.npmjs.org/wordwrap\n","npm ","http 304 https://registry.npmjs.org/base64-js/0.0.2\n","npm http"," 304 https://registry.npmjs.org/mkdirp\n","npm http"," GET https://registry.npmjs.org/graceful-fs\n","npm http"," GET https://registry.npmjs.org/minimatch\n","npm http"," GET https://registry.npmjs.org/fast-list\n","npm http"," GET https://registry.npmjs.org/minimatch\n","npm ","http GET https://registry.npmjs.org/async\n","npm ","http GET https://registry.npmjs.org/keypress\n","npm ","http GET https://registry.npmjs.org/connect\n","npm ","http GET https://registry.npmjs.org/mime/1.2.4\n","npm http"," GET https://registry.npmjs.org/socket.io-client/0.9.10\n","npm ","http GET https://registry.npmjs.org/policyfile/0.0.4\n","npm ","http GET https://registry.npmjs.org/eyes\n","npm http"," GET https://registry.npmjs.org/loggly\n","npm ","http GET https://registry.npmjs.org/set\n","npm ","http GET https://registry.npmjs.org/graceful-fs\n","npm ","http GET https://registry.npmjs.org/qs\n","npm http"," GET https://registry.npmjs.org/redis/0.7.2\n","npm http"," GET https://registry.npmjs.org/pkginfo\n","npm"," http GET https://registry.npmjs.org/inherits\n","npm"," http GET https://registry.npmjs.org/mkdirp/0.3.0\n","npm ","http 304 https://registry.npmjs.org/fast-list\n","npm ","http 304 https://registry.npmjs.org/graceful-fs\n","npm ","http 304 https://registry.npmjs.org/async\n","npm ","http 304 https://registry.npmjs.org/minimatch\n","npm ","http 304 https://registry.npmjs.org/minimatch\n","npm ","http 304 https://registry.npmjs.org/keypress\n","npm http"," 304 https://registry.npmjs.org/connect\n","npm ","WARN package.json connect@1.9.2 No README.md file found!\n","npm http"," 304 https://registry.npmjs.org/socket.io-client/0.9.10\n","npm ","http 304 https://registry.npmjs.org/mime/1.2.4\n","npm http"," 304 https://registry.npmjs.org/policyfile/0.0.4\n","npm http ","304 https://registry.npmjs.org/eyes\n","npm ","http 304 https://registry.npmjs.org/loggly\n","npm http"," 304 https://registry.npmjs.org/set\n","npm http"," 304 https://registry.npmjs.org/graceful-fs\n","npm ","http 304 https://registry.npmjs.org/qs\n","npm http"," GET https://registry.npmjs.org/lru-cache\n","npm"," http ","GET https://registry.npmjs.org/sigmund\n","npm http"," 304 https://registry.npmjs.org/redis/0.7.2\n","npm ","http 304 https://registry.npmjs.org/pkginfo\n","npm http"," 304 https://registry.npmjs.org/mkdirp/0.3.0\n","npm ","http 304 https://registry.npmjs.org/inherits\n","npm"," ","http"," ","304"," https://registry.npmjs.org/sigmund\n","npm ","http GET https://registry.npmjs.org/hiredis\n","npm http"," GET https://registry.npmjs.org/request\n","npm"," http GET https://registry.npmjs.org/timespan\n","npm http"," GET https://registry.npmjs.org/lru-cache\n","npm http GET"," https://registry.npmjs.org/formidable\n","npm http 304"," https://registry.npmjs.org/lru-cache\n","npm http ","GET https://registry.npmjs.org/uglify-js/1.2.5\n","npm ","http GET https://registry.npmjs.org/xmlhttprequest/1.4.2\n","npm ","http GET https://registry.npmjs.org/active-x-obfuscator/0.0.1\n","npm http"," GET https://registry.npmjs.org/ws\n","npm http 304"," https://registry.npmjs.org/formidable\n","npm http ","304 https://registry.npmjs.org/timespan\n","npm ","http 304 https://registry.npmjs.org/lru-cache\n","npm ","http 304 https://registry.npmjs.org/hiredis\n","npm ","WARN package.json hiredis@0.1.14 No README.md file found!\n","\n> hiredis@0.1.14 preinstall /tmp/ci/work/5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis\n> make || gmake\n\n","cd deps/hiredis && make static\n","npm"," http ","304 https://registry.npmjs.org/uglify-js/1.2.5\n","npm http"," 304 https://registry.npmjs.org/xmlhttprequest/1.4.2\n","make[1]: Entering directory `/tmp/ci/work/5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\ncc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb net.c\n","npm http"," 304 https://registry.npmjs.org/active-x-obfuscator/0.0.1\n","npm http ","304 https://registry.npmjs.org/ws\n","npm ","http GET https://registry.npmjs.org/zeparser/0.0.5\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb hiredis.c\n","npm http ","GET https://registry.npmjs.org/commander\n","npm ","http GET https://registry.npmjs.org/tinycolor\n","npm http"," GET https://registry.npmjs.org/options\n","npm ","http 304 https://registry.npmjs.org/request\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb sds.c\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb async.c\n","npm http ","304 https://registry.npmjs.org/zeparser/0.0.5\n","npm http"," 304 https://registry.npmjs.org/options\n","npm http"," 304 https://registry.npmjs.org/tinycolor\n","npm http"," 304 https://registry.npmjs.org/commander\n","ar rcs libhiredis.a net.o hiredis.o sds.o async.o\n","make[1]: Leaving directory `/tmp/ci/work/5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\n","node-waf configure build\n","Traceback (most recent call last):\n File \"/home/testling/installs/node-v0.8.15/bin/node-waf\", line 14, in <module>\n import Scripting\n File \"/home/testling/installs/node-v0.8.15/bin/../lib/node/wafadmin/Scripting.py\", line 146\n except Utils.WafError, e:\n ^\nSyntaxError: invalid syntax\n","\n> ws@0.4.25 install /tmp/ci/work/5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149/node_modules/testem/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws\n> (node-gyp rebuild 2> builderror.log) || (exit 0)\n\n","make: *** [all] Error 1\n","cd deps/hiredis && gmake static\n","gmake[1]: Entering directory `/tmp/ci/work/5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\ngmake[1]: Nothing to be done for `static'.\n","gmake[1]: Leaving directory `/tmp/ci/work/5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\n","node-waf configure build\n","Traceback (most recent call last):\n File \"/home/testling/installs/node-v0.8.15/bin/node-waf\", line 14, in <module>\n import Scripting\n File \"/home/testling/installs/node-v0.8.15/bin/../lib/node/wafadmin/Scripting.py\", line 146\n except Utils.WafError, e:\n ^\nSyntaxError: invalid syntax\n","gmake: *** [all] Error 1\n","npm WARN"," optional dep failed, continuing hiredis@0.1.14\n","to-array@0.1.3 node_modules/to-array\n\ntape@0.1.3 node_modules/tape\n├── deep-equal@0.0.0\n├── defined@0.0.0\n└── jsonify@0.0.0\n\nbrowserify@1.16.6 node_modules/browserify\n├── nub@0.0.0\n├── commondir@0.0.1\n├── vm-browserify@0.0.1\n├── crypto-browserify@0.1.2\n├── resolve@0.2.3\n├── coffee-script@1.4.0\n├── http-browserify@0.1.6 (concat-stream@0.0.8)\n├── buffer-browserify@0.0.4 (base64-js@0.0.2)\n├── optimist@0.3.5 (wordwrap@0.0.2)\n├── deputy@0.0.4 (mkdirp@0.3.4)\n├── syntax-error@0.0.0 (esprima@0.9.9)\n└── detective@0.2.1 (esprima@0.9.9)\n\ntestem@0.2.50 node_modules/testem\n├── styled_string@0.0.1\n├── colors@0.6.0-1\n├── mustache@0.4.0\n├── charm@0.0.5\n├── backbone@0.9.9\n├── async@0.1.15\n├── underscore@1.4.3\n├── js-yaml@0.3.5\n├── rimraf@2.0.3 (graceful-fs@1.1.14)\n├── commander@1.1.1 (keypress@0.1.0)\n├── fireworm@0.0.8 (set@1.0.0, async@0.1.22, minimatch@0.2.9)\n├── glob@3.0.1 (inherits@1.0.0, graceful-fs@1.1.14, fast-list@1.0.2, minimatch@0.1.5)\n├── express@2.5.10 (qs@0.4.2, mime@1.2.4, mkdirp@0.3.0, connect@1.9.2)\n├── winston@0.3.4 (eyes@0.1.8, pkginfo@0.2.3, loggly@0.3.11)\n└── socket.io@0.9.10 (policyfile@0.0.4, redis@0.7.2, socket.io-client@0.9.10)\n","Expressions in require() statements:\n"," require(file)\n","\n","/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:459\n"," throw moduleError('Cannot find module');\n "," ^\n","Error: Cannot find module: \"./lib/default_stream\" from directory \"/tmp/ci/work/5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149/test\" while processing file /tmp/ci/work/5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149/test/bundle.js\n at moduleError (/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:420:16)\n at Function.Wrap.require (/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:459:19)\n at Function.module.exports.Object.keys.forEach.self.(anonymous function) [as require] (/home/testling/projects/testling-ci/git/node_modules/browserify/index.js:158:28)\n at Wrap.require (/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:541:14)\n at Array.forEach (native)\n at Function.Wrap.require (/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:533:27)\n at Function.module.exports.Object.keys.forEach.self.(anonymous function) [as require] (/home/testling/projects/testling-ci/git/node_modules/browserify/index.js:158:28)\n at /home/testling/projects/testling-ci/git/bin/bundle.js:62:12\n at Array.forEach (native)\n at Object.<anonymous> (/home/testling/projects/testling-ci/git/bin/bundle.js:61:7)\n","\nerror creating bundle\n"]}}
|
|
107
|
+
,
|
|
108
|
+
{"id":"ccc87f2e39902598d0895524bd0df4e2","key":["Colingo/valid-schema.git","54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359"],"value":{"_id":"ccc87f2e39902598d0895524bd0df4e2","_rev":"1-7b8a5dcd483a6d0ece28bb3b9070936f","type":"test","time":1355438941313,"commit":{"id":"54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","dir":"/tmp/ci/work/54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","repo":"Colingo/valid-schema.git","hash":"54be1e1d9a1fe1697b4baf60b664c1e992182e21","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438916478.128c5835","browser":"safari/5.1","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
109
|
+
,
|
|
110
|
+
{"id":"ccc87f2e39902598d0895524bd0de68f","key":["Colingo/valid-schema.git","54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359"],"value":{"_id":"ccc87f2e39902598d0895524bd0de68f","_rev":"1-3b23ea08dfc18558209ecfb5bc6aad27","type":"test","time":1355438934308,"commit":{"id":"54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","dir":"/tmp/ci/work/54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","repo":"Colingo/valid-schema.git","hash":"54be1e1d9a1fe1697b4baf60b664c1e992182e21","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438916478.128c5835","browser":"opera/12.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
111
|
+
,
|
|
112
|
+
{"id":"ccc87f2e39902598d0895524bd0de297","key":["Colingo/valid-schema.git","54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359"],"value":{"_id":"ccc87f2e39902598d0895524bd0de297","_rev":"1-55ef5525fca00489e0a4da0136c2af5c","type":"test","time":1355438929591,"commit":{"id":"54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","dir":"/tmp/ci/work/54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","repo":"Colingo/valid-schema.git","hash":"54be1e1d9a1fe1697b4baf60b664c1e992182e21","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438916478.128c5835","browser":"chrome/canary","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
113
|
+
,
|
|
114
|
+
{"id":"ccc87f2e39902598d0895524bd0dd92a","key":["Colingo/valid-schema.git","54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359"],"value":{"_id":"ccc87f2e39902598d0895524bd0dd92a","_rev":"1-86119c823c84db70f5b21656d48605cb","type":"test","time":1355438928189,"commit":{"id":"54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","dir":"/tmp/ci/work/54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","repo":"Colingo/valid-schema.git","hash":"54be1e1d9a1fe1697b4baf60b664c1e992182e21","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438916478.128c5835","browser":"chrome/22.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
115
|
+
,
|
|
116
|
+
{"id":"ccc87f2e39902598d0895524bd0dd5ec","key":["Colingo/valid-schema.git","54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359"],"value":{"_id":"ccc87f2e39902598d0895524bd0dd5ec","_rev":"1-ffd74b6588bbe62bee9c258bfa09650c","type":"test","time":1355438923360,"commit":{"id":"54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","dir":"/tmp/ci/work/54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","repo":"Colingo/valid-schema.git","hash":"54be1e1d9a1fe1697b4baf60b664c1e992182e21","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438916478.128c5835","browser":"firefox/nightly","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
117
|
+
,
|
|
118
|
+
{"id":"ccc87f2e39902598d0895524bd0dd146","key":["Colingo/valid-schema.git","54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359"],"value":{"_id":"ccc87f2e39902598d0895524bd0dd146","_rev":"1-49e4debfbc00fd1c6ab1a4374d296a07","type":"test","time":1355438922966,"commit":{"id":"54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","dir":"/tmp/ci/work/54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","repo":"Colingo/valid-schema.git","hash":"54be1e1d9a1fe1697b4baf60b664c1e992182e21","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438916478.128c5835","browser":"firefox/15.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
119
|
+
,
|
|
120
|
+
{"id":"ccc87f2e39902598d0895524bd0dc22a","key":["Colingo/valid-schema.git","54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359"],"value":{"_id":"ccc87f2e39902598d0895524bd0dc22a","_rev":"1-b536dd2683703c3d577da299d21c49da","type":"test","time":1355438922467,"commit":{"id":"54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","dir":"/tmp/ci/work/54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","repo":"Colingo/valid-schema.git","hash":"54be1e1d9a1fe1697b4baf60b664c1e992182e21","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438916478.128c5835","browser":"iexplore/9.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
121
|
+
,
|
|
122
|
+
{"id":"ccc87f2e39902598d0895524bd0dbb5c","key":["Colingo/valid-schema.git","54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359"],"value":{"_id":"ccc87f2e39902598d0895524bd0dbb5c","_rev":"1-9907e19d23d0bfe5bf373c411e0fc09b","type":"test","time":1355438918547,"commit":{"id":"54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","dir":"/tmp/ci/work/54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","repo":"Colingo/valid-schema.git","hash":"54be1e1d9a1fe1697b4baf60b664c1e992182e21","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438916478.128c5835","browser":"iexplore/8.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"not ok 1 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"not ok 2 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"not ok 3 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"\\n1..3\\n\\n\"]\n","[\"stdout\",\"# tests 3\\n\\n\"]\n","[\"stdout\",\"# pass 0\\n\\n\"]\n","[\"stdout\",\"# fail 3\\n\\n\"]\n"]}}
|
|
123
|
+
,
|
|
124
|
+
{"id":"ccc87f2e39902598d0895524bd0b6ef8","key":["Colingo/valid-schema.git","4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604"],"value":{"_id":"ccc87f2e39902598d0895524bd0b6ef8","_rev":"1-d9f127f5a659ef4057bf547877b8f642","type":"test","time":1355353540398,"commit":{"id":"4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","dir":"/tmp/ci/work/4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","repo":"Colingo/valid-schema.git","hash":"4389d95d7b6123c320292b867333be2dee28f4ce","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353516700.f3b39b59","browser":"safari/5.1","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
125
|
+
,
|
|
126
|
+
{"id":"ccc87f2e39902598d0895524bd0b6bf3","key":["Colingo/valid-schema.git","4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604"],"value":{"_id":"ccc87f2e39902598d0895524bd0b6bf3","_rev":"1-4e506ec9534c8c3489f737f1f70938b3","type":"test","time":1355353538741,"commit":{"id":"4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","dir":"/tmp/ci/work/4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","repo":"Colingo/valid-schema.git","hash":"4389d95d7b6123c320292b867333be2dee28f4ce","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353516700.f3b39b59","browser":"opera/12.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
127
|
+
,
|
|
128
|
+
{"id":"ccc87f2e39902598d0895524bd0b65d9","key":["Colingo/valid-schema.git","4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604"],"value":{"_id":"ccc87f2e39902598d0895524bd0b65d9","_rev":"1-c88a7a474de21653b067e39c618cc728","type":"test","time":1355353536930,"commit":{"id":"4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","dir":"/tmp/ci/work/4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","repo":"Colingo/valid-schema.git","hash":"4389d95d7b6123c320292b867333be2dee28f4ce","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353516700.f3b39b59","browser":"chrome/canary","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
129
|
+
,
|
|
130
|
+
{"id":"ccc87f2e39902598d0895524bd0b650e","key":["Colingo/valid-schema.git","4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604"],"value":{"_id":"ccc87f2e39902598d0895524bd0b650e","_rev":"1-8381352d6acdc3b29330655654c72c57","type":"test","time":1355353534460,"commit":{"id":"4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","dir":"/tmp/ci/work/4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","repo":"Colingo/valid-schema.git","hash":"4389d95d7b6123c320292b867333be2dee28f4ce","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353516700.f3b39b59","browser":"chrome/22.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
131
|
+
,
|
|
132
|
+
{"id":"ccc87f2e39902598d0895524bd0b5a5b","key":["Colingo/valid-schema.git","4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604"],"value":{"_id":"ccc87f2e39902598d0895524bd0b5a5b","_rev":"1-2dcd94fd53d8529027825deb9034d320","type":"test","time":1355353528581,"commit":{"id":"4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","dir":"/tmp/ci/work/4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","repo":"Colingo/valid-schema.git","hash":"4389d95d7b6123c320292b867333be2dee28f4ce","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353516700.f3b39b59","browser":"firefox/nightly","output":["[\"stdout\",\"TAP version 13\\u000a\\u000a\"]\n","[\"stdout\",\"# error case\\u000a\\u000a\"]\n","[\"stdout\",\"not ok 1 TypeError: Object.keys is not a function\\u000a ---\\u000a operator: error\\u000a expected:\\u000a \\u000a actual:\\u000a {\\\"message\\\":\\\"Object.keys is not a function\\\",\\\"fileName\\\":\\\"http://git.testling.com/bundle/1355353516700.f3b39b59.js\\\",\\\"lineNumber\\\":2311,\\\"stack\\\":\\\"([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\\\u000a([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2249\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\\\u000a([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\\\u000a\\\"}\\u000a stack:\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2249\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\u000a ([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\u000a \\u000a ...\\u000a\\u000a\"]\n","[\"stdout\",\"# correct case\\u000a\\u000a\"]\n","[\"stdout\",\"not ok 2 TypeError: Object.keys is not a function\\u000a ---\\u000a operator: error\\u000a expected:\\u000a \\u000a actual:\\u000a {\\\"message\\\":\\\"Object.keys is not a function\\\",\\\"fileName\\\":\\\"http://git.testling.com/bundle/1355353516700.f3b39b59.js\\\",\\\"lineNumber\\\":2311,\\\"stack\\\":\\\"([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\\\u000a([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2261\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\\\u000a([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\\\u000a\\\"}\\u000a stack:\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2261\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\u000a ([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\u000a \\u000a ...\\u000a\\u000a\"]\n","[\"stdout\",\"# number schema\\u000a\\u000a\"]\n","[\"stdout\",\"not ok 3 TypeError: Object.keys is not a function\\u000a ---\\u000a operator: error\\u000a expected:\\u000a \\u000a actual:\\u000a {\\\"message\\\":\\\"Object.keys is not a function\\\",\\\"fileName\\\":\\\"http://git.testling.com/bundle/1355353516700.f3b39b59.js\\\",\\\"lineNumber\\\":2311,\\\"stack\\\":\\\"([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\\\u000a([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2275\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\\\u000a([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\\\u000a\\\"}\\u000a stack:\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2275\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\u000a ([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\u000a \\u000a ...\\u000a\\u000a\"]\n","[\"stdout\",\"\\u000a1..3\\u000a\\u000a\"]\n","[\"stdout\",\"# tests 3\\u000a\\u000a\"]\n","[\"stdout\",\"# pass 0\\u000a\\u000a\"]\n","[\"stdout\",\"# fail 3\\u000a\\u000a\"]\n"]}}
|
|
133
|
+
,
|
|
134
|
+
{"id":"ccc87f2e39902598d0895524bd0b4a6c","key":["Colingo/valid-schema.git","4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604"],"value":{"_id":"ccc87f2e39902598d0895524bd0b4a6c","_rev":"1-5ca1587eaada546a40b5f14c377ce3a3","type":"test","time":1355353524746,"commit":{"id":"4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","dir":"/tmp/ci/work/4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","repo":"Colingo/valid-schema.git","hash":"4389d95d7b6123c320292b867333be2dee28f4ce","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353516700.f3b39b59","browser":"firefox/15.0","output":["[\"stdout\",\"TAP version 13\\u000a\\u000a\"]\n","[\"stdout\",\"# error case\\u000a\\u000a\"]\n","[\"stdout\",\"not ok 1 TypeError: Object.keys is not a function\\u000a ---\\u000a operator: error\\u000a expected:\\u000a \\u000a actual:\\u000a {\\\"message\\\":\\\"Object.keys is not a function\\\",\\\"fileName\\\":\\\"http://git.testling.com/bundle/1355353516700.f3b39b59.js\\\",\\\"lineNumber\\\":2311,\\\"stack\\\":\\\"([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\\\u000a([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2249\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\\\u000a([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\\\u000a\\\"}\\u000a stack:\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2249\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\u000a ([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\u000a \\u000a ...\\u000a\\u000a\"]\n","[\"stdout\",\"# correct case\\u000a\\u000a\"]\n","[\"stdout\",\"not ok 2 TypeError: Object.keys is not a function\\u000a ---\\u000a operator: error\\u000a expected:\\u000a \\u000a actual:\\u000a {\\\"message\\\":\\\"Object.keys is not a function\\\",\\\"fileName\\\":\\\"http://git.testling.com/bundle/1355353516700.f3b39b59.js\\\",\\\"lineNumber\\\":2311,\\\"stack\\\":\\\"([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\\\u000a([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2261\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\\\u000a([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\\\u000a\\\"}\\u000a stack:\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2261\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\u000a ([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\u000a \\u000a ...\\u000a\\u000a\"]\n","[\"stdout\",\"# number schema\\u000a\\u000a\"]\n","[\"stdout\",\"not ok 3 TypeError: Object.keys is not a function\\u000a ---\\u000a operator: error\\u000a expected:\\u000a \\u000a actual:\\u000a {\\\"message\\\":\\\"Object.keys is not a function\\\",\\\"fileName\\\":\\\"http://git.testling.com/bundle/1355353516700.f3b39b59.js\\\",\\\"lineNumber\\\":2311,\\\"stack\\\":\\\"([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\\\u000a([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2275\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\\\u000a([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\\\u000a\\\"}\\u000a stack:\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2275\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\u000a ([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\u000a \\u000a ...\\u000a\\u000a\"]\n","[\"stdout\",\"\\u000a1..3\\u000a\\u000a\"]\n","[\"stdout\",\"# tests 3\\u000a\\u000a\"]\n","[\"stdout\",\"# pass 0\\u000a\\u000a\"]\n","[\"stdout\",\"# fail 3\\u000a\\u000a\"]\n"]}}
|
|
135
|
+
,
|
|
136
|
+
{"id":"ccc87f2e39902598d0895524bd0b4991","key":["Colingo/valid-schema.git","4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604"],"value":{"_id":"ccc87f2e39902598d0895524bd0b4991","_rev":"1-b4e8752a7493d995ba6cd5b02632cb58","type":"test","time":1355353523922,"commit":{"id":"4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","dir":"/tmp/ci/work/4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","repo":"Colingo/valid-schema.git","hash":"4389d95d7b6123c320292b867333be2dee28f4ce","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353516700.f3b39b59","browser":"iexplore/9.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
|
|
137
|
+
,
|
|
138
|
+
{"id":"ccc87f2e39902598d0895524bd0b423a","key":["Colingo/valid-schema.git","4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604"],"value":{"_id":"ccc87f2e39902598d0895524bd0b423a","_rev":"1-e058b43fdcd03a780dc2bb5f15c35418","type":"test","time":1355353520024,"commit":{"id":"4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","dir":"/tmp/ci/work/4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","repo":"Colingo/valid-schema.git","hash":"4389d95d7b6123c320292b867333be2dee28f4ce","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353516700.f3b39b59","browser":"iexplore/8.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"not ok 1 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"not ok 2 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"not ok 3 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"\\n1..3\\n\\n\"]\n","[\"stdout\",\"# tests 3\\n\\n\"]\n","[\"stdout\",\"# pass 0\\n\\n\"]\n","[\"stdout\",\"# fail 3\\n\\n\"]\n"]}}
|
|
139
|
+
]
|