Socket
Book a DemoInstallSign in
Socket

grunt-ghost-inspector

Package Overview
Dependencies
Maintainers
4
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-ghost-inspector

Grunt plugin for executing Ghost Inspector automated UI tests

latest
Source
npmnpm
Version
2.1.4
Version published
Weekly downloads
7
-46.15%
Maintainers
4
Weekly downloads
 
Created
Source

Grunt Plugin for Ghost Inspector

Grunt plugin for executing Ghost Inspector automated UI tests.

CircleCI

Getting Started

This plugin requires Grunt ^1.1.0

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-ghost-inspector --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-ghost-inspector');

The "ghostinspector" task

Overview

In your project's Gruntfile, add a section named ghostinspector to the data object passed into grunt.initConfig().

grunt.initConfig({
  ghostinspector: {
    options: {
      apiKey: 'api-key',  // The API key for your Ghost Inspector account
    },
    production: {
      suites: ['suite-id-1', 'suite-id-2', ...],  // IDs of any suites to execute
      tests: ['test-id-1', 'test-id-2', ...]  // IDs of any tests to execute
    },
    staging: {
      tests: ['test-id-1', 'test-id-2', ...],
      options: {
        startUrl: 'http://staging.domain.com'  // Override the tests' start URL
      }
    }
  }
});

License

MIT

Keywords

grunt

FAQs

Package last updated on 06 Dec 2021

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