roku-test-automation
Advanced tools
Comparing version 2.0.0-beta.21 to 2.0.0-beta.22
@@ -97,3 +97,3 @@ /// <reference types="node" /> | ||
childRenderOrder?: 'renderFirst' | 'renderLast'; | ||
children: NodeRepresentation[]; | ||
children?: NodeRepresentation[]; | ||
clippingRect?: [number, number, number, number]; | ||
@@ -100,0 +100,0 @@ enableRenderTracking?: boolean; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.utils = void 0; | ||
const path = require("path"); | ||
const Ajv = require("ajv"); | ||
@@ -56,3 +55,3 @@ const ajv = new Ajv(); | ||
getConfigFromConfigFileCore(configFilePath = 'rta-config.json', parentConfigPaths = []) { | ||
configFilePath = path.resolve(configFilePath); | ||
configFilePath = this.getPath().resolve(configFilePath); | ||
let config; | ||
@@ -67,3 +66,3 @@ try { | ||
if (config.extends) { | ||
const baseConfigFilePath = path.resolve(config.extends); | ||
const baseConfigFilePath = this.getPath().resolve(config.extends); | ||
if (parentConfigPaths.includes(baseConfigFilePath)) { | ||
@@ -70,0 +69,0 @@ throw new Error(`Circular dependency detected. '${baseConfigFilePath}' has already been included`); |
{ | ||
"name": "roku-test-automation", | ||
"version": "2.0.0-beta.21", | ||
"version": "2.0.0-beta.22", | ||
"description": "Helps with automating functional tests", | ||
@@ -5,0 +5,0 @@ "main": "client/dist/index.js", |
Sorry, the diff of this file is not supported yet
392230
4719