New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@types/gulp-angular-protractor

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/gulp-angular-protractor

TypeScript definitions for gulp-angular-protractor

2.0.4
ts4.5
ts4.6
ts4.7
ts4.8
ts4.9
ts5.0
ts5.1
ts5.2
ts5.3
ts5.4
ts5.5
ts5.6
ts5.7
ts5.8
ts5.9
latest
Source
npm
Version published
Maintainers
1
Created
Source

Installation

npm install --save @types/gulp-angular-protractor

Summary

This package contains type definitions for gulp-angular-protractor (https://github.com/rochejul/gulp-angular-protractor).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-angular-protractor.

index.d.ts

import through = require("through");

declare function gulpProtractorAngular(options: gulpProtractorAngular.Options): through.ThroughStream;

declare namespace gulpProtractorAngular {
    // See https://github.com/rochejul/gulp-angular-protractor/blob/master/readme.md#api
    interface Options {
        /**
         * If true, the plugin will update the WebDriver, launch the WebDriver server before launching tests and stop it at the end automatically
         *
         * @default true
         */
        autoStartStopServer?: boolean;

        /**
         * The path to your protractor config
         */
        configFile: string;

        /**
         * Arguments get passed directly to the protractor call [Read the docs for more information](https://github.com/angular/protractor/blob/master/docs/getting-started.md#setup-and-config)
         *
         * @default []
         */
        args?: string[];

        /**
         * Enables Protractor's [debug mode](https://github.com/angular/protractor/blob/master/docs/debugging.md), which can be used to pause tests during execution and to view stack traces.
         *
         * @default false
         */
        debug?: boolean;

        /**
         * @default true
         */
        verbose?: boolean;

        /**
         * If you want to use another protractor version instead the default one
         */
        protractorModulePath?: string;

        webDriverUpdate?: WebDriverUpdate;

        // See https://github.com/rochejul/gulp-angular-protractor/blob/master/examples/example-05/Gulpfile.js
        webDriverStart?: WebDriverStart;
    }

    interface WebDriverUpdate {
        /**
         * @default false
         */
        skip?: boolean;

        /**
         * List of browsers to update the webdriver
         *
         * @default ['chrome']
         */
        browsers?: string[];

        /**
         * Additional arguments to pass for the update of the webdriver
         *
         * @default []
         */
        args?: string[];
    }

    interface WebDriverStart {
        /**
         * @default []
         */
        args?: string[];
    }
}

export = gulpProtractorAngular;

Additional Details

  • Last updated: Tue, 07 Nov 2023 03:09:37 GMT
  • Dependencies: @types/node, @types/through

Credits

These definitions were written by Adam Kwiatek.

FAQs

Package last updated on 07 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts