From 92040afcc9b663783f35c8052a6c8a22ded64f1a Mon Sep 17 00:00:00 2001 From: holly-weisser Date: Thu, 22 Jun 2017 08:30:24 -0400 Subject: [PATCH] Remove .only from test. --- spec/unit/utils/utils.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/unit/utils/utils.spec.js b/spec/unit/utils/utils.spec.js index f7fb16ec2..c23cf3b1c 100644 --- a/spec/unit/utils/utils.spec.js +++ b/spec/unit/utils/utils.spec.js @@ -5,7 +5,7 @@ var expect = require('chai').expect; var utils = require('../../../lib/utils/utils'); describe('utils', function() { - describe.only('xmlEncode', function() { + describe('xmlEncode', function() { it('encodes xml text', function() { expect(utils.xmlEncode('<')).to.equal('<'); expect(utils.xmlEncode('>')).to.equal('>');