Skip to content

Commit

Permalink
Restore regexp (disabled when fixing tests).
Browse files Browse the repository at this point in the history
  • Loading branch information
Download committed Mar 27, 2018
1 parent 7fede68 commit e3d0d78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __tests__/preprocess.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ var preprocess = require('../preprocess');

var subject = function() {
return preprocess.apply(null, arguments)
.replace(/\s+/g, ' ');
// .replace(/;$/, '');
.replace(/\s+/g, ' ')
.replace(/;$/, '');
};

describe('preprocess', function() {
Expand Down

0 comments on commit e3d0d78

Please sign in to comment.