Skip to content

Commit

Permalink
Remove .only from test.
Browse files Browse the repository at this point in the history
  • Loading branch information
holly-weisser committed Jun 22, 2017
1 parent 1141257 commit 92040af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/unit/utils/utils.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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('&lt;');
expect(utils.xmlEncode('>')).to.equal('&gt;');
Expand Down

0 comments on commit 92040af

Please sign in to comment.