mirror of
https://github.com/status-im/react-native.git
synced 2025-01-26 17:30:25 +00:00
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:
parent
af05af7125
commit
e2ffac28e4
@ -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() {
|
||||
|
@ -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);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user