Skip to content

Commit

Permalink
test(deprecate.spec.js): Make PR requested changes for approval
Browse files Browse the repository at this point in the history
Removed `.only` from `describe`. Removed `console.trace` debug output.
  • Loading branch information
plroebuck committed Nov 4, 2018
1 parent 0fd5585 commit 4697169
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/integration/deprecate.spec.js
Expand Up @@ -4,13 +4,12 @@ var assert = require('assert');
var run = require('./helpers').runMocha;
var args = [];

describe.only('utils.deprecate test', function() {
describe('utils.deprecate test', function() {
it('should print unique deprecation only once', function(done) {
run('deprecate.fixture.js', args, function(err, res) {
if (err) {
return done(err);
}
console.trace(res);
var result = res.output.match(/deprecated thing/g) || [];
assert.equal(result.length, 2);
done();
Expand Down

0 comments on commit 4697169

Please sign in to comment.