forked from apache/cordova-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Completed remaining versions.js testing for full coverage - Added Jasmine Coverage Configuration - Added component test execution to npm test
- Loading branch information
Showing
7 changed files
with
86 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"spec_dir": "tests/spec", | ||
"spec_files": [ | ||
"component/**/*[sS]pec.js" | ||
], | ||
"stopSpecOnExpectationFailure": false, | ||
"random": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/** | ||
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.', (done) => { | ||
versions.get_tool_version('unknown').catch((error) => { | ||
expect(error).toContain('is not valid tool name'); | ||
done(); | ||
}); | ||
}); | ||
|
||
it('should find xcodebuild version.', (done) => { | ||
versions.get_tool_version('xcodebuild').then((version) => { | ||
expect(version).not.toBe(undefined); | ||
done(); | ||
}); | ||
}); | ||
|
||
it('should find ios-sim version.', (done) => { | ||
versions.get_tool_version('ios-sim').then((version) => { | ||
expect(version).not.toBe(undefined); | ||
done(); | ||
}); | ||
}); | ||
|
||
it('should find ios-deploy version.', (done) => { | ||
versions.get_tool_version('ios-deploy').then((version) => { | ||
expect(version).not.toBe(undefined); | ||
done(); | ||
}); | ||
}); | ||
|
||
it('should find pod version.', (done) => { | ||
versions.get_tool_version('pod').then((version) => { | ||
expect(version).not.toBe(undefined); | ||
done(); | ||
}); | ||
}); | ||
}); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"spec_dir": "tests/spec", | ||
"spec_files": [ | ||
"unit/**/*[sS]pec.js", | ||
"component/**/*[sS]pec.js" | ||
], | ||
"stopSpecOnExpectationFailure": false, | ||
"random": false | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters