testable-utils
Advanced tools
Comparing version 0.5.2 to 0.5.4
import {EventEmitter} from "events"; | ||
declare module testableUtils { | ||
declare namespace testableUtils { | ||
var isLocal: boolean; | ||
@@ -130,2 +130,38 @@ var isSmokeTest: boolean; | ||
export = testableUtils; | ||
declare module "testable-utils" { | ||
export = testableUtils | ||
} | ||
declare namespace WebdriverIO { | ||
interface Browser { | ||
testableLogTrace: () => any; | ||
testableLogDebug: () => any; | ||
testableLogInfo: () => any; | ||
testableLogError: () => any; | ||
testableLogFatal: () => any; | ||
testableCsvGet: (name: string, index: number) => any; | ||
testableCsvRandom: (name: string) => any; | ||
testableCsvNext: (name: string, options: any) => any; | ||
testableResult: (resource: string, url: string) => any; | ||
testableTiming: (result: any) => any; | ||
testableCounter: (result: any) => any; | ||
testableHistogram: (result: any) => any; | ||
testableMetered: (result: any) => any; | ||
testableGetMetric: () => any; | ||
testableWaitForValue: (options: any) => any; | ||
testableWaitForCondition: (options: any) => any; | ||
testableIncrementAndWaitForValue: (options: any) => any; | ||
testableBarrier: (name: string, value: any) => any; | ||
testableInfo: () => any; | ||
testableScreenshot: (name: string) => any; | ||
testableStopwatch: (code: string, metricName: string, resource: string) => any; | ||
testableWaitForEvent: (eventName: string, timeout: number, defaultVal: any) => any; | ||
testableWaitForFinish: () => any; | ||
} | ||
} | ||
declare module "@wdio/sync" { | ||
export = WebdriverIO | ||
} |
{ | ||
"name": "testable-utils", | ||
"version": "0.5.2", | ||
"version": "0.5.4", | ||
"description": "Utilities for Testable scripts", | ||
@@ -5,0 +5,0 @@ "author": "Avi Stramer", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
50419
913