@flood/chrome
Advanced tools
Comparing version 0.1.14 to 0.1.15
@@ -713,1 +713,36 @@ // Type definitions for @flood/chrome 0.1.12 | ||
} | ||
export function assert(value: boolean, message?: string) | ||
export namespace assert { | ||
export class AssertionError { | ||
name: string | ||
message: string | ||
actual: any | ||
expected: any | ||
operator: string | ||
generatedMessage: boolean | ||
stack: string[] | ||
isFailure: boolean | ||
constructor(options?: { | ||
message?: string | ||
actual?: any | ||
expected?: any | ||
operator?: string | ||
stackStartFunction?: Function | ||
}) | ||
} | ||
export function fail(message: string): void | ||
export function fail(actual: any, expected: any, message?: string, operator?: string): void | ||
export function ok(value: any, message?: string): void | ||
export function equal(actual: any, expected: any, message?: string): void | ||
export function notEqual(actual: any, expected: any, message?: string): void | ||
export function deepEqual(actual: any, expected: any, message?: string): void | ||
export function notDeepEqual(acutal: any, expected: any, message?: string): void | ||
export function strictEqual(actual: any, expected: any, message?: string): void | ||
export function notStrictEqual(actual: any, expected: any, message?: string): void | ||
export function deepStrictEqual(actual: any, expected: any, message?: string): void | ||
export function notDeepStrictEqual(actual: any, expected: any, message?: string): void | ||
export function ifError(value: any): void | ||
} |
{ | ||
"name": "@flood/chrome", | ||
"version": "0.1.14", | ||
"version": "0.1.15", | ||
"private": false, | ||
@@ -5,0 +5,0 @@ "description": "Flood Chrome provides an API for scripting Browser Level Load Tests", |
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
35526
645