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
[Appium] Welcome to Appium v1.7.2 (REV 7ad6d98cedde01809e32d56ab8ced064f6f28175) | |
[Appium] Appium REST http interface listener started on 0.0.0.0:4723 | |
[HTTP] --> POST /wd/hub/session {"desiredCapabilities":{"platformName":"iOS","deviceName":"iPhone Simulator","xcodeOrgId":"58HKZG8YVV","xcodeSigningId":"iPhone Developer","updatedWDABundleId":"com.trinet.WebDriverAgentRunner","automationName":"XCUITest","app":"/Users/alin/.expo/ios-simulator-app-cache/Exponent-2.3.0.app"}} | |
[debug] [MJSONWP] Calling AppiumDriver.createSession() with args: [{"platformName":"iOS","deviceName":"iPhone Simulator","xcodeOrgId":"58HKZG8YVV","xcodeSigningId":"iPhone Developer","updatedWDABundleId":"com.trinet.WebDriverAgentRunner","automationName":"XCUITest","app":"/Users/alin/.expo/ios-simulator-app-cache/Exponent-2.3.0.app"},null,null] | |
[debug] [BaseDriver] Event 'newSessionRequested' logged at 1521608368924 (21:59:28 GMT-0700 (PDT)) | |
[Appium] Creating new XCUITestDriver (v2.64.0) session | |
[Appium] Capabilities: | |
[Appium] platformName: |
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
. | |
├── index.js | |
├── common | |
│ ├── components | |
│ ├── constants | |
│ ├── http | |
│ ├── i18n | |
│ ├── store | |
│ │ ├── index.js | |
│ │ └── money |
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
fdescribe('totalHoursValidator', function() { | |
var $scope, $compile, element, template; | |
beforeEach(inject(function(_$rootScope_, _$compile_) { | |
$scope = _$rootScope_.$new(); | |
$compile = _$compile_; | |
template = '<form name="leaveRequestForm">' + | |
'<div name="startDate"></div>' + | |
'<div name="endDate"></div>' + |