A deep dependency of yeoman just spams the console.log with giant json. This diff silences console.log around the require to kill them

This commit is contained in:
Christopher Chedeau 2015-09-10 09:48:15 -07:00
parent af05af7125
commit e2ffac28e4
2 changed files with 25 additions and 3 deletions

View File

@ -5,10 +5,21 @@ jest.autoMockOff();
var path = require('path');
describe('react:ios', function() {
var assert = require('yeoman-generator').assert;
var assert;
beforeEach(function() {
// A deep dependency of yeoman spams console.log with giant json objects.
// yeoman-generator/node_modules/
// download/node_modules/
// caw/node_modules/
// get-proxy/node_modules/
// rc/index.js
var log = console.log;
console.log = function() {};
assert = require('yeoman-generator').assert;
var helpers = require('yeoman-generator').test;
console.log = log;
var generated = false;
runs(function() {

View File

@ -6,10 +6,21 @@ var path = require('path');
var fs = require('fs');
describe('react:react', function() {
var assert = require('yeoman-generator').assert;
var assert;
beforeEach(function() {
// A deep dependency of yeoman spams console.log with giant json objects.
// yeoman-generator/node_modules/
// download/node_modules/
// caw/node_modules/
// get-proxy/node_modules/
// rc/index.js
var log = console.log;
console.log = function() {};
assert = require('yeoman-generator').assert;
var helpers = require('yeoman-generator').test;
console.log = log;
var generated = false;
runs(function() {
@ -46,4 +57,4 @@ describe('react:react', function() {
expect(stat.isDirectory()).toBe(true);
});
});
});