Socket
Socket
Sign inDemoInstall

pickle-test-runner

Package Overview
Dependencies
78
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.2.4 to 2.2.5

Debugger/Watcher.d.ts

3

Debugger/Api.d.ts

@@ -1,3 +0,2 @@

import { IFeature } from "../Feature/Loader";
import { IRunnerOptions } from "../Options";
export declare function getApiRouter(feature: IFeature, options: IRunnerOptions): import("express-serve-static-core").Router;
export declare function getApiRouter(options: IRunnerOptions): import("express-serve-static-core").Router;

@@ -5,4 +5,5 @@ import { IRunnerOptions } from "../../Options";

Stdout = 0,
JUnit = 1
JUnit = 1,
BridgeJSON = 2
}
export declare function reportFeature(type: ReporterType, featureOutcome: IFeatureOutcome, options: IRunnerOptions): Promise<void>;

@@ -5,9 +5,11 @@ export interface IRunnerOptions {

jUnitXmlOutputPath?: string;
bridgeJSONOutputPath?: string;
bridgeJSONArea?: string;
logOutputPath?: string;
debug?: boolean;
debugPort?: number;
warnForDuplicatedSteps?: boolean;
featureFullPath?: string;
requiredFilePaths?: string[];
killOnFinish?: boolean;
}
export declare function parseArgs(): IRunnerOptions;
{
"name": "pickle-test-runner",
"version": "2.2.4",
"version": "2.2.5",
"description": "",

@@ -5,0 +5,0 @@ "main": "Runner.js",

import "./Step/Expression";
import "./Step/Step";
import "./Utils/Array";
import { IFeature } from "./Feature/Loader";
import { IRunnerOptions } from "./Options";
export declare function requireScripts(fileNames: string[]): void;
export declare function requireScripts(options: IRunnerOptions, fileNames: string[]): void;
export declare let feature: IFeature;
export declare function initFeature(options: IRunnerOptions): Promise<void>;
export declare let options: IRunnerOptions;
export default function execute(initialOptions?: IRunnerOptions): Promise<void>;
export { execute };
declare function reloadScripts(path: string): Promise<void>;
export { execute, reloadScripts };
export { defineStep, Given, Then, When, And, But, TContext, beforeScenario, afterScenario, beforeFeature, afterFeature, beforeStep, afterStep } from "./Step/Step";
export { defineExpression } from "./Step/Expression";
import { IFeatureOutcome, IScenarioOutcome, IStepOutcome } from "../Feature/Executor";
import { IFeature, IScenario } from "../Feature/Loader";
import { IRunnerOptions } from "../Options";
import { IStepExpression } from "./Expression";

@@ -39,3 +40,3 @@ export type TContext<T = {

export declare const stepDefinitions: Map<string | RegExp, IStepDefinition>;
export declare function loadStepDefinitions(): void;
export declare function loadStepDefinitions(options: IRunnerOptions): void;
export declare function defineStep(pattern: string, cb: TCallbackFuntion): void;

@@ -42,0 +43,0 @@ export declare function defineStep(regexp: RegExp, cb: TCallbackFuntion): void;

@@ -8,3 +8,3 @@ {

"noImplicitReturns": true,
"declaration": false,
"declaration": true,
"noImplicitThis": true,

@@ -11,0 +11,0 @@ "strictFunctionTypes": true,

export declare function createRegexFromPattern(globPattern: string): RegExp;
export declare function extractEntryDirectory(globPattern: string): string;
export declare function toPosix(path: string): string;
export declare function queryFilesByGlob(path: string): Promise<string[]>;

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc