react-native/local-cli/runIOS/__tests__/findXcodeProject-test.js
James Burnett 51c0e81557 remove disableAutomock from jest tests (new default) @bypass-lint
Reviewed By: cpojer

Differential Revision: D5237192

fbshipit-source-id: dccca52a91259d7fea27931f92bca94184a82d4a
2017-06-13 15:04:09 -07:00

58 lines
1.3 KiB
JavaScript

/**
* Copyright (c) 2015-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.
*/
'use strict';
jest.dontMock('../findXcodeProject');
const findXcodeProject = require('../findXcodeProject');
describe('findXcodeProject', () => {
it('should find *.xcodeproj file', () => {
expect(findXcodeProject([
'.DS_Store',
'AwesomeApp',
'AwesomeApp.xcodeproj',
'AwesomeAppTests',
'PodFile',
'Podfile.lock',
'Pods'
])).toEqual({
name: 'AwesomeApp.xcodeproj',
isWorkspace: false,
});
});
it('should prefer *.xcworkspace', () => {
expect(findXcodeProject([
'.DS_Store',
'AwesomeApp',
'AwesomeApp.xcodeproj',
'AwesomeApp.xcworkspace',
'AwesomeAppTests',
'PodFile',
'Podfile.lock',
'Pods'
])).toEqual({
name: 'AwesomeApp.xcworkspace',
isWorkspace: true,
});
});
it('should return null if nothing found', () => {
expect(findXcodeProject([
'.DS_Store',
'AwesomeApp',
'AwesomeAppTests',
'PodFile',
'Podfile.lock',
'Pods'
])).toEqual(null);
});
});