mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 17:45:59 +00:00
1f498010e8
Summary: This is first PR from the series I am going to be sending as a result of fixing 0.50-stable test suite. This one removes `mockFS` dependency that has been causing failures on Node 6.x container. Here's build before this change: https://circleci.com/gh/facebook/react-native/22529 Here's build after this change: https://circleci.com/gh/facebook/react-native/22538 (green) Note that the CI may be still red as there are other PRs to be addressed. You can see this in the wild on 0.50. Closes https://github.com/facebook/react-native/pull/16301 Differential Revision: D6031352 Pulled By: hramos fbshipit-source-id: 5c97ae6c87864c094e29e5d8987521071c67f5bd
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
jest.mock('fs');
|
|
|
|
const findAssets = require('../findAssets');
|
|
const dependencies = require('../__fixtures__/dependencies');
|
|
const fs = require('fs');
|
|
|
|
describe('findAssets', () => {
|
|
beforeEach(() => {
|
|
fs.__setMockFilesystem({testDir: dependencies.withAssets});
|
|
});
|
|
|
|
it('returns an array of all files in given folders', () => {
|
|
const assets = findAssets('/testDir', ['fonts', 'images']);
|
|
|
|
expect(Array.isArray(assets)).toBeTruthy();
|
|
expect(assets).toHaveLength(3);
|
|
});
|
|
|
|
it('prepends assets paths with the folder path', () => {
|
|
const assets = findAssets('/testDir', ['fonts', 'images']);
|
|
|
|
assets.forEach(assetPath => {
|
|
expect(assetPath).toContain('testDir');
|
|
});
|
|
});
|
|
|
|
it('returns an empty array if given assets are null', () => {
|
|
expect(findAssets('/testDir', null)).toHaveLength(0);
|
|
});
|
|
});
|