wdio-reportportal-reporter
Advanced tools
Comparing version 6.1.0 to 6.1.1
import { STATUS, TYPE } from "./constants"; | ||
export declare class StartTestItem { | ||
name: string; | ||
description: any; | ||
description?: string; | ||
parameters?: any[]; | ||
attributes: any[]; | ||
type: TYPE; | ||
codeRef: string; | ||
codeRef?: string; | ||
retry: boolean; | ||
hasStats: boolean; | ||
hasStats?: boolean; | ||
constructor(name: string, type: TYPE); | ||
@@ -12,0 +12,0 @@ addTags(): void; |
@@ -7,9 +7,9 @@ import {STATUS, TYPE} from "./constants"; | ||
public name = ""; | ||
public description; | ||
public description?: string; | ||
public parameters?: any[]; | ||
public attributes = []; | ||
public type: TYPE; | ||
public codeRef: string; | ||
public codeRef?: string; | ||
public retry = false; | ||
public hasStats: boolean; | ||
public hasStats?: boolean; | ||
@@ -16,0 +16,0 @@ constructor(name: string, type: TYPE) { |
{ | ||
"name": "wdio-reportportal-reporter", | ||
"version": "6.1.0", | ||
"version": "6.1.1", | ||
"description": "A WebdriverIO v6 plugin. Report results to Report Portal.", | ||
@@ -5,0 +5,0 @@ "main": "build/reporter.js", |
78940