From da827bdd066f86f4fb29adbe9aca40d770454960 Mon Sep 17 00:00:00 2001 From: ssotomayor Date: Mon, 20 Oct 2014 14:57:47 -0300 Subject: [PATCH] Quick fix: Adds missing test in parsing uri for Insight.js --- test/Identity.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/Identity.js b/test/Identity.js index 1ae910908..aad707e51 100644 --- a/test/Identity.js +++ b/test/Identity.js @@ -423,7 +423,8 @@ describe('Identity model', function() { describe('#Insight', function() { it('should parse a uri', function() { - Insight.setCompleteUrl('http://someurl.bitpay.com:443'); + var uri = Insight.setCompleteUrl('http://someurl.bitpay.com:443'); + should.exist(uri); }); });