@testmo/testmo-cli
Advanced tools
Comparing version 1.0.12 to 1.0.13
@@ -143,5 +143,7 @@ "use strict"; | ||
} | ||
if ('properties' in element && Array.isArray(element.properties)) { | ||
if ('properties' in element && Array.isArray(element.properties) && | ||
element.properties.length >= 1) { | ||
var properties = element.properties[0]; | ||
if ('property' in properties && Array.isArray(properties.property)) { | ||
if (properties instanceof Object && | ||
'property' in properties && Array.isArray(properties.property)) { | ||
var propertyList = properties.property; | ||
@@ -148,0 +150,0 @@ for (var _i = 0, propertyList_1 = propertyList; _i < propertyList_1.length; _i++) { |
{ | ||
"name": "@testmo/testmo-cli", | ||
"version": "1.0.12", | ||
"version": "1.0.13", | ||
"description": "Testmo command line interface", | ||
@@ -5,0 +5,0 @@ "author": "Testmo GmbH", |
@@ -5,4 +5,2 @@ # Testmo CLI | ||
This package provides bindings to access Testmo's REST API from JavaScript projects. The package is based on Testmo's REST API spec. | ||
## Installation | ||
@@ -9,0 +7,0 @@ |
4034
217952
62