UNPKG

cordova-ios

Version:
60 lines (51 loc) 2.3 kB
/** Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ var rewire = require('rewire'); var versions = rewire('../../../bin/templates/scripts/cordova/lib/versions'); // These tests can not run on windows. if (process.platform === 'darwin') { describe('versions', function () { describe('get_tool_version method', () => { it('should not have found tool by name.', () => { return versions.get_tool_version('unknown').then( () => fail('expected promise rejection'), error => expect(error).toContain('is not valid tool name') ); }); it('should find xcodebuild version.', () => { return versions.get_tool_version('xcodebuild').then((version) => { expect(version).not.toBe(undefined); }); }); it('should find ios-sim version.', () => { return versions.get_tool_version('ios-sim').then((version) => { expect(version).not.toBe(undefined); }); }); it('should find ios-deploy version.', () => { return versions.get_tool_version('ios-deploy').then((version) => { expect(version).not.toBe(undefined); }); }); it('should find pod version.', () => { return versions.get_tool_version('pod').then((version) => { expect(version).not.toBe(undefined); }); }); }); }); }