remove disableAutomock from jest tests (new default) @bypass-lint
Reviewed By: cpojer Differential Revision: D5237192 fbshipit-source-id: dccca52a91259d7fea27931f92bca94184a82d4a
This commit is contained in:
parent
7707905550
commit
51c0e81557
|
@ -8,8 +8,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
var Animated = require('Animated');
|
var Animated = require('Animated');
|
||||||
describe('Animated tests', () => {
|
describe('Animated tests', () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest
|
jest
|
||||||
.disableAutomock()
|
|
||||||
.setMock('Text', {})
|
.setMock('Text', {})
|
||||||
.setMock('View', {})
|
.setMock('View', {})
|
||||||
.setMock('Image', {})
|
.setMock('Image', {})
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
var Easing = require('Easing');
|
var Easing = require('Easing');
|
||||||
describe('Easing', () => {
|
describe('Easing', () => {
|
||||||
it('should work with linear', () => {
|
it('should work with linear', () => {
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
var Interpolation = require('Interpolation');
|
var Interpolation = require('Interpolation');
|
||||||
var Easing = require('Easing');
|
var Easing = require('Easing');
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
var bezier = require('bezier');
|
var bezier = require('bezier');
|
||||||
|
|
||||||
var identity = function (x) { return x; };
|
var identity = function (x) { return x; };
|
||||||
|
|
|
@ -9,9 +9,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
// const MessageQueueTestConfig = require('MessageQueueTestConfig');
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
let MessageQueue;
|
let MessageQueue;
|
||||||
let MessageQueueTestModule;
|
let MessageQueueTestModule;
|
||||||
let queue;
|
let queue;
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
const React = require('React');
|
const React = require('React');
|
||||||
const ReactTestRenderer = require('react-test-renderer');
|
const ReactTestRenderer = require('react-test-renderer');
|
||||||
const Text = require('Text');
|
const Text = require('Text');
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
var parseErrorStack = require('parseErrorStack');
|
var parseErrorStack = require('parseErrorStack');
|
||||||
|
|
||||||
function getFakeError() {
|
function getFakeError() {
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
var AssetRegistry = require('AssetRegistry');
|
var AssetRegistry = require('AssetRegistry');
|
||||||
var Platform = require('Platform');
|
var Platform = require('Platform');
|
||||||
var NativeModules = require('NativeModules');
|
var NativeModules = require('NativeModules');
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest
|
jest
|
||||||
.disableAutomock()
|
|
||||||
.mock('ErrorUtils')
|
.mock('ErrorUtils')
|
||||||
.mock('BatchedBridge');
|
.mock('BatchedBridge');
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest
|
jest
|
||||||
.disableAutomock()
|
|
||||||
.mock('ErrorUtils')
|
.mock('ErrorUtils')
|
||||||
.mock('BatchedBridge');
|
.mock('BatchedBridge');
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,6 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
function expectToBeCalledOnce(fn) {
|
function expectToBeCalledOnce(fn) {
|
||||||
expect(fn.mock.calls.length).toBe(1);
|
expect(fn.mock.calls.length).toBe(1);
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
const FillRateHelper = require('FillRateHelper');
|
const FillRateHelper = require('FillRateHelper');
|
||||||
|
|
||||||
let rowFramesGlobal;
|
let rowFramesGlobal;
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
const React = require('React');
|
const React = require('React');
|
||||||
const ReactTestRenderer = require('react-test-renderer');
|
const ReactTestRenderer = require('react-test-renderer');
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
const React = require('React');
|
const React = require('React');
|
||||||
const ReactTestRenderer = require('react-test-renderer');
|
const ReactTestRenderer = require('react-test-renderer');
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
const ViewabilityHelper = require('ViewabilityHelper');
|
const ViewabilityHelper = require('ViewabilityHelper');
|
||||||
|
|
||||||
let rowFrames;
|
let rowFrames;
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
const {elementsThatOverlapOffsets, newRangeCount} = require('VirtualizeUtils');
|
const {elementsThatOverlapOffsets, newRangeCount} = require('VirtualizeUtils');
|
||||||
|
|
||||||
describe('newRangeCount', function() {
|
describe('newRangeCount', function() {
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
const React = require('React');
|
const React = require('React');
|
||||||
const ReactTestRenderer = require('react-test-renderer');
|
const ReactTestRenderer = require('react-test-renderer');
|
||||||
|
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
const FormData = require('FormData');
|
const FormData = require('FormData');
|
||||||
|
|
||||||
describe('FormData', function() {
|
describe('FormData', function() {
|
||||||
|
|
|
@ -20,7 +20,6 @@ function setRequestId(id){
|
||||||
}
|
}
|
||||||
|
|
||||||
jest
|
jest
|
||||||
.disableAutomock()
|
|
||||||
.dontMock('event-target-shim')
|
.dontMock('event-target-shim')
|
||||||
.setMock('NativeModules', {
|
.setMock('NativeModules', {
|
||||||
Networking: {
|
Networking: {
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
var flattenStyle = require('flattenStyle');
|
var flattenStyle = require('flattenStyle');
|
||||||
|
|
||||||
describe('flattenStyle', () => {
|
describe('flattenStyle', () => {
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
var normalizeColor = require('normalizeColor');
|
var normalizeColor = require('normalizeColor');
|
||||||
|
|
||||||
describe('normalizeColor', function() {
|
describe('normalizeColor', function() {
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
const {OS} = require('Platform');
|
const {OS} = require('Platform');
|
||||||
const processColor = require('processColor');
|
const processColor = require('processColor');
|
||||||
|
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
const processTransform = require('processTransform');
|
const processTransform = require('processTransform');
|
||||||
|
|
||||||
describe('processTransform', () => {
|
describe('processTransform', () => {
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
var setNormalizedColorAlpha = require('setNormalizedColorAlpha');
|
var setNormalizedColorAlpha = require('setNormalizedColorAlpha');
|
||||||
var normalizeColor = require('normalizeColor');
|
var normalizeColor = require('normalizeColor');
|
||||||
|
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
var MatrixMath = require('MatrixMath');
|
var MatrixMath = require('MatrixMath');
|
||||||
|
|
||||||
function degreesToRadians(degrees) {
|
function degreesToRadians(degrees) {
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
var PlatformIOS = require('../Platform.ios');
|
var PlatformIOS = require('../Platform.ios');
|
||||||
var PlatformAndroid = require('../Platform.android');
|
var PlatformAndroid = require('../Platform.android');
|
||||||
|
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
const SceneTracker = require('SceneTracker');
|
const SceneTracker = require('SceneTracker');
|
||||||
|
|
||||||
describe('setActiveScene', function() {
|
describe('setActiveScene', function() {
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
var buildStyleInterpolator = require('buildStyleInterpolator');
|
var buildStyleInterpolator = require('buildStyleInterpolator');
|
||||||
|
|
||||||
var validateEmpty = function(interpolator, value, validator) {
|
var validateEmpty = function(interpolator, value, validator) {
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
* of patent rights can be found in the PATENTS file in the same directory.
|
* of patent rights can be found in the PATENTS file in the same directory.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
jest.disableAutomock();
|
|
||||||
var deepFreezeAndThrowOnMutationInDev = require('deepFreezeAndThrowOnMutationInDev');
|
var deepFreezeAndThrowOnMutationInDev = require('deepFreezeAndThrowOnMutationInDev');
|
||||||
|
|
||||||
describe('deepFreezeAndThrowOnMutationInDev', function() {
|
describe('deepFreezeAndThrowOnMutationInDev', function() {
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
describe('groupByEveryN', () => {
|
describe('groupByEveryN', () => {
|
||||||
var groupByEveryN = require('groupByEveryN');
|
var groupByEveryN = require('groupByEveryN');
|
||||||
|
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
describe('mapWithSeparator', () => {
|
describe('mapWithSeparator', () => {
|
||||||
const mapWithSeparator = require('mapWithSeparator');
|
const mapWithSeparator = require('mapWithSeparator');
|
||||||
|
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
describe('truncate', () => {
|
describe('truncate', () => {
|
||||||
|
|
||||||
var truncate = require('truncate');
|
var truncate = require('truncate');
|
||||||
|
|
|
@ -7,57 +7,55 @@
|
||||||
* of patent rights can be found in the PATENTS file in the same directory.
|
* of patent rights can be found in the PATENTS file in the same directory.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
const {encode} = require('../utf8');
|
||||||
|
|
||||||
const {encode} = require('../utf8');
|
describe('UTF-8 encoding:', () => {
|
||||||
|
it('can encode code points < U+80', () => {
|
||||||
|
const arrayBuffer = encode('\u0000abcDEF\u007f');
|
||||||
|
expect(new Uint8Array(arrayBuffer)).toEqual(
|
||||||
|
new Uint8Array([0x00, 0x61, 0x62, 0x63, 0x44, 0x45, 0x46, 0x7f]));
|
||||||
|
});
|
||||||
|
|
||||||
describe('UTF-8 encoding:', () => {
|
it('can encode code points < U+800', () => {
|
||||||
it('can encode code points < U+80', () => {
|
const arrayBuffer = encode('\u0080\u0548\u07ff');
|
||||||
const arrayBuffer = encode('\u0000abcDEF\u007f');
|
expect(new Uint8Array(arrayBuffer)).toEqual(
|
||||||
expect(new Uint8Array(arrayBuffer)).toEqual(
|
new Uint8Array([0xc2, 0x80, 0xd5, 0x88, 0xdf, 0xbf]));
|
||||||
new Uint8Array([0x00, 0x61, 0x62, 0x63, 0x44, 0x45, 0x46, 0x7f]));
|
});
|
||||||
});
|
|
||||||
|
|
||||||
it('can encode code points < U+800', () => {
|
it('can encode code points < U+10000', () => {
|
||||||
const arrayBuffer = encode('\u0080\u0548\u07ff');
|
const arrayBuffer = encode('\u0800\uac48\uffff');
|
||||||
expect(new Uint8Array(arrayBuffer)).toEqual(
|
expect(new Uint8Array(arrayBuffer)).toEqual(
|
||||||
new Uint8Array([0xc2, 0x80, 0xd5, 0x88, 0xdf, 0xbf]));
|
new Uint8Array([0xe0, 0xa0, 0x80, 0xea, 0xb1, 0x88, 0xef, 0xbf, 0xbf]));
|
||||||
});
|
});
|
||||||
|
|
||||||
it('can encode code points < U+10000', () => {
|
it('can encode code points in the Supplementary Planes (surrogate pairs)', () => {
|
||||||
const arrayBuffer = encode('\u0800\uac48\uffff');
|
const arrayBuffer = encode([
|
||||||
expect(new Uint8Array(arrayBuffer)).toEqual(
|
'\ud800\udc00',
|
||||||
new Uint8Array([0xe0, 0xa0, 0x80, 0xea, 0xb1, 0x88, 0xef, 0xbf, 0xbf]));
|
'\ud800\ude89',
|
||||||
});
|
'\ud83d\ude3b',
|
||||||
|
'\udbff\udfff'
|
||||||
|
].join(''));
|
||||||
|
expect(new Uint8Array(arrayBuffer)).toEqual(
|
||||||
|
new Uint8Array([
|
||||||
|
0xf0, 0x90, 0x80, 0x80,
|
||||||
|
0xf0, 0x90, 0x8a, 0x89,
|
||||||
|
0xf0, 0x9f, 0x98, 0xbb,
|
||||||
|
0xf4, 0x8f, 0xbf, 0xbf,
|
||||||
|
])
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
it('can encode code points in the Supplementary Planes (surrogate pairs)', () => {
|
it('allows for stray high surrogates', () => {
|
||||||
const arrayBuffer = encode([
|
const arrayBuffer = encode(String.fromCharCode(0x61, 0xd8c6, 0x62));
|
||||||
'\ud800\udc00',
|
expect(new Uint8Array(arrayBuffer)).toEqual(
|
||||||
'\ud800\ude89',
|
new Uint8Array([0x61, 0xed, 0xa3, 0x86, 0x62]));
|
||||||
'\ud83d\ude3b',
|
});
|
||||||
'\udbff\udfff'
|
|
||||||
].join(''));
|
|
||||||
expect(new Uint8Array(arrayBuffer)).toEqual(
|
|
||||||
new Uint8Array([
|
|
||||||
0xf0, 0x90, 0x80, 0x80,
|
|
||||||
0xf0, 0x90, 0x8a, 0x89,
|
|
||||||
0xf0, 0x9f, 0x98, 0xbb,
|
|
||||||
0xf4, 0x8f, 0xbf, 0xbf,
|
|
||||||
])
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('allows for stray high surrogates', () => {
|
it('allows for stray low surrogates', () => {
|
||||||
const arrayBuffer = encode(String.fromCharCode(0x61, 0xd8c6, 0x62));
|
const arrayBuffer = encode(String.fromCharCode(0x61, 0xde19, 0x62));
|
||||||
expect(new Uint8Array(arrayBuffer)).toEqual(
|
expect(new Uint8Array(arrayBuffer)).toEqual(
|
||||||
new Uint8Array([0x61, 0xed, 0xa3, 0x86, 0x62]));
|
new Uint8Array([0x61, 0xed, 0xb8, 0x99, 0x62]));
|
||||||
});
|
});
|
||||||
|
});
|
||||||
it('allows for stray low surrogates', () => {
|
|
||||||
const arrayBuffer = encode(String.fromCharCode(0x61, 0xde19, 0x62));
|
|
||||||
expect(new Uint8Array(arrayBuffer)).toEqual(
|
|
||||||
new Uint8Array([0x61, 0xed, 0xb8, 0x99, 0x62]));
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock();
|
|
||||||
var deepDiffer = require('deepDiffer');
|
var deepDiffer = require('deepDiffer');
|
||||||
|
|
||||||
describe('deepDiffer', function() {
|
describe('deepDiffer', function() {
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock()
|
jest
|
||||||
.dontMock('../filterPlatformAssetScales')
|
.dontMock('../filterPlatformAssetScales')
|
||||||
.dontMock('../assetPathUtils');
|
.dontMock('../assetPathUtils');
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock()
|
jest
|
||||||
.dontMock('../getAssetDestPathAndroid')
|
.dontMock('../getAssetDestPathAndroid')
|
||||||
.dontMock('../assetPathUtils');
|
.dontMock('../assetPathUtils');
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock().dontMock('../getAssetDestPathIOS');
|
jest.dontMock('../getAssetDestPathIOS');
|
||||||
|
|
||||||
const getAssetDestPathIOS = require('../getAssetDestPathIOS');
|
const getAssetDestPathIOS = require('../getAssetDestPathIOS');
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const findAndroidAppFolder = require('../../android/findAndroidAppFolder');
|
const findAndroidAppFolder = require('../../android/findAndroidAppFolder');
|
||||||
const mockFS = require('mock-fs');
|
const mockFS = require('mock-fs');
|
||||||
const mocks = require('../../__fixtures__/android');
|
const mocks = require('../../__fixtures__/android');
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
require('../../__fixtures__/mockFSWorkaround');
|
require('../../__fixtures__/mockFSWorkaround');
|
||||||
|
|
||||||
const findManifest = require('../../android/findManifest');
|
const findManifest = require('../../android/findManifest');
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
require('../../__fixtures__/mockFSWorkaround');
|
require('../../__fixtures__/mockFSWorkaround');
|
||||||
|
|
||||||
const findPackageClassName = require('../../android/findPackageClassName');
|
const findPackageClassName = require('../../android/findPackageClassName');
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
require('../../__fixtures__/mockFSWorkaround');
|
require('../../__fixtures__/mockFSWorkaround');
|
||||||
|
|
||||||
const getDependencyConfig = require('../../android').dependencyConfig;
|
const getDependencyConfig = require('../../android').dependencyConfig;
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
require('../../__fixtures__/mockFSWorkaround');
|
require('../../__fixtures__/mockFSWorkaround');
|
||||||
|
|
||||||
const getProjectConfig = require('../../android').projectConfig;
|
const getProjectConfig = require('../../android').projectConfig;
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
require('../../__fixtures__/mockFSWorkaround');
|
require('../../__fixtures__/mockFSWorkaround');
|
||||||
|
|
||||||
const findManifest = require('../../android/findManifest');
|
const findManifest = require('../../android/findManifest');
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const findAssets = require('../findAssets');
|
const findAssets = require('../findAssets');
|
||||||
const dependencies = require('../__fixtures__/dependencies');
|
const dependencies = require('../__fixtures__/dependencies');
|
||||||
const mockFs = require('mock-fs');
|
const mockFs = require('mock-fs');
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const findPlugins = require('../findPlugins');
|
const findPlugins = require('../findPlugins');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
require('../../__fixtures__/mockFSWorkaround');
|
require('../../__fixtures__/mockFSWorkaround');
|
||||||
|
|
||||||
const findProject = require('../../ios/findProject');
|
const findProject = require('../../ios/findProject');
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
require('../../__fixtures__/mockFSWorkaround');
|
require('../../__fixtures__/mockFSWorkaround');
|
||||||
|
|
||||||
const getProjectConfig = require('../../ios').projectConfig;
|
const getProjectConfig = require('../../ios').projectConfig;
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
let spawnError = false;
|
let spawnError = false;
|
||||||
|
|
||||||
jest.setMock('child_process', {
|
jest.setMock('child_process', {
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const applyParams = require('../../android/patches/applyParams');
|
const applyParams = require('../../android/patches/applyParams');
|
||||||
|
|
||||||
describe('applyParams', () => {
|
describe('applyParams', () => {
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const isInstalled = require('../../android/isInstalled');
|
const isInstalled = require('../../android/isInstalled');
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const makeBuildPatch = require('../../android/patches/makeBuildPatch');
|
const makeBuildPatch = require('../../android/patches/makeBuildPatch');
|
||||||
const name = 'test';
|
const name = 'test';
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const makeImportPatch = require('../../android/patches/makeImportPatch');
|
const makeImportPatch = require('../../android/patches/makeImportPatch');
|
||||||
|
|
||||||
const packageImportPath = 'import some.example.project';
|
const packageImportPath = 'import some.example.project';
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const makePackagePatch = require('../../android/patches/makePackagePatch');
|
const makePackagePatch = require('../../android/patches/makePackagePatch');
|
||||||
const applyParams = require('../../android/patches/applyParams');
|
const applyParams = require('../../android/patches/applyParams');
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const makeSettingsPatch = require('../../android/patches/makeSettingsPatch');
|
const makeSettingsPatch = require('../../android/patches/makeSettingsPatch');
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const makeStringsPatch = require('../../android/patches/makeStringsPatch');
|
const makeStringsPatch = require('../../android/patches/makeStringsPatch');
|
||||||
|
|
||||||
describe('makeStringsPatch', () => {
|
describe('makeStringsPatch', () => {
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const getDependencyConfig = require('../getDependencyConfig');
|
const getDependencyConfig = require('../getDependencyConfig');
|
||||||
const sinon = require('sinon');
|
const sinon = require('sinon');
|
||||||
|
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const getProjectDependencies = require('../getProjectDependencies');
|
const getProjectDependencies = require('../getProjectDependencies');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const groupFilesByType = require('../groupFilesByType');
|
const groupFilesByType = require('../groupFilesByType');
|
||||||
|
|
||||||
describe('groupFilesByType', () => {
|
describe('groupFilesByType', () => {
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const xcode = require('xcode');
|
const xcode = require('xcode');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const addFileToProject = require('../../ios/addFileToProject');
|
const addFileToProject = require('../../ios/addFileToProject');
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const xcode = require('xcode');
|
const xcode = require('xcode');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const PbxFile = require('xcode/lib/pbxFile');
|
const PbxFile = require('xcode/lib/pbxFile');
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const xcode = require('xcode');
|
const xcode = require('xcode');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const addSharedLibraries = require('../../ios/addSharedLibraries');
|
const addSharedLibraries = require('../../ios/addSharedLibraries');
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const xcode = require('xcode');
|
const xcode = require('xcode');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const createGroup = require('../../ios/createGroup');
|
const createGroup = require('../../ios/createGroup');
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const xcode = require('xcode');
|
const xcode = require('xcode');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const getBuildProperty = require('../../ios/getBuildProperty');
|
const getBuildProperty = require('../../ios/getBuildProperty');
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const xcode = require('xcode');
|
const xcode = require('xcode');
|
||||||
const getGroup = require('../../ios/getGroup');
|
const getGroup = require('../../ios/getGroup');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const getHeaderSearchPath = require('../../ios/getHeaderSearchPath');
|
const getHeaderSearchPath = require('../../ios/getHeaderSearchPath');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const getHeadersInFolder = require('../../ios/getHeadersInFolder');
|
const getHeadersInFolder = require('../../ios/getHeadersInFolder');
|
||||||
|
|
||||||
describe('ios::getHeadersInFolder', () => {
|
describe('ios::getHeadersInFolder', () => {
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const xcode = require('xcode');
|
const xcode = require('xcode');
|
||||||
const getPlist = require('../../ios/getPlist');
|
const getPlist = require('../../ios/getPlist');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const xcode = require('xcode');
|
const xcode = require('xcode');
|
||||||
const getPlistPath = require('../../ios/getPlistPath');
|
const getPlistPath = require('../../ios/getPlistPath');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const xcode = require('xcode');
|
const xcode = require('xcode');
|
||||||
const getProducts = require('../../ios/getProducts');
|
const getProducts = require('../../ios/getProducts');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const xcode = require('xcode');
|
const xcode = require('xcode');
|
||||||
const hasLibraryImported = require('../../ios/hasLibraryImported');
|
const hasLibraryImported = require('../../ios/hasLibraryImported');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const isInstalled = require('../../ios/isInstalled');
|
const isInstalled = require('../../ios/isInstalled');
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const xcode = require('xcode');
|
const xcode = require('xcode');
|
||||||
const mapHeaderSearchPaths = require('../../ios/mapHeaderSearchPaths');
|
const mapHeaderSearchPaths = require('../../ios/mapHeaderSearchPaths');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const xcode = require('xcode');
|
const xcode = require('xcode');
|
||||||
const PbxFile = require('xcode/lib/pbxFile');
|
const PbxFile = require('xcode/lib/pbxFile');
|
||||||
const addProjectToLibraries = require('../../ios/addProjectToLibraries');
|
const addProjectToLibraries = require('../../ios/addProjectToLibraries');
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const xcode = require('xcode');
|
const xcode = require('xcode');
|
||||||
const pbxFile = require('xcode/lib/pbxFile');
|
const pbxFile = require('xcode/lib/pbxFile');
|
||||||
const addFileToProject = require('../../ios/addFileToProject');
|
const addFileToProject = require('../../ios/addFileToProject');
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const xcode = require('xcode');
|
const xcode = require('xcode');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const addSharedLibraries = require('../../ios/addSharedLibraries');
|
const addSharedLibraries = require('../../ios/addSharedLibraries');
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
jest.mock('fs');
|
jest.mock('fs');
|
||||||
|
|
||||||
let plistPath = null;
|
let plistPath = null;
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const sinon = require('sinon');
|
const sinon = require('sinon');
|
||||||
const log = require('npmlog');
|
const log = require('npmlog');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.autoMockOff();
|
|
||||||
|
|
||||||
const sinon = require('sinon');
|
const sinon = require('sinon');
|
||||||
const promiseWaterfall = require('../promiseWaterfall');
|
const promiseWaterfall = require('../promiseWaterfall');
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock().dontMock('../findMatchingSimulator');
|
jest.dontMock('../findMatchingSimulator');
|
||||||
|
|
||||||
const findMatchingSimulator = require('../findMatchingSimulator');
|
const findMatchingSimulator = require('../findMatchingSimulator');
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock().dontMock('../findXcodeProject');
|
jest.dontMock('../findXcodeProject');
|
||||||
|
|
||||||
const findXcodeProject = require('../findXcodeProject');
|
const findXcodeProject = require('../findXcodeProject');
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock().dontMock('../parseIOSDevicesList');
|
jest.dontMock('../parseIOSDevicesList');
|
||||||
var parseIOSDevicesList = require('../parseIOSDevicesList');
|
var parseIOSDevicesList = require('../parseIOSDevicesList');
|
||||||
|
|
||||||
describe('parseIOSDevicesList', () => {
|
describe('parseIOSDevicesList', () => {
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
jest.disableAutomock().dontMock('../getInverseDependencies');
|
jest.dontMock('../getInverseDependencies');
|
||||||
|
|
||||||
const getInverseDependencies = require('../getInverseDependencies');
|
const getInverseDependencies = require('../getInverseDependencies');
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
jest.disableAutomock();
|
|
||||||
import 'react-native';
|
import 'react-native';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Index from '../index.android.js';
|
import Index from '../index.android.js';
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
jest.disableAutomock();
|
|
||||||
import 'react-native';
|
import 'react-native';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Index from '../index.ios.js';
|
import Index from '../index.ios.js';
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
jest.disableAutomock();
|
|
||||||
|
|
||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
Loading…
Reference in New Issue