Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@proof-ui/applitools-plugin

Package Overview
Dependencies
Maintainers
3
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@proof-ui/applitools-plugin

Uses [applitools](https://applitools.com/) Visual Grid to take a snapshot of your story and run a visual regression check. It can be configured to run on may different screen-size and browser combinations. Make sure the `APPLITOOLS_ID` environment variabl

  • 0.3.6
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by50%
Maintainers
3
Weekly downloads
 
Created
Source

@proof-ui/applitools-plugin

Uses applitools Visual Grid to take a snapshot of your story and run a visual regression check. It can be configured to run on may different screen-size and browser combinations. Make sure the APPLITOOLS_ID environment variable is set, and that you have access to the Visual Grid beta.

Installation

yarn add -D @proof-ui/applitools-plugin

Usage

// proof.config.js
import ApplitoolsPlugin from '@proof-ui/applitools-plugin';

export default {
  plugins: [
    new ApplitoolsPlugin({
      // Configuration
    })
  ]
};
# Command Line Usage
proof --visual

Optionally set the test batch name

# Easilly track down test results by setting the PR number in the batch-name
proof --visual --visual-batch-name 'PR #112'

Run visual diffs against every story, even if no tests are written for one, requires the add-all-plugin

# Every story will be visually tested
proof --visual --add-all

Options

You can configure the applitools-plugin through some options in it's constructor:

PropertyDescriptionTypeDefault
delayTime (in ms) to wait before taking a screen-shot. Useful for making sure images are loaded, and animations are complete.number (ms)1000
configureA function used to configure the screen size and browser combinations for use in testing. Accepts a single argument, an instance of an applitools Configuration objectfunction see Configuration

Example

To test a 100px by 200px screenshot on Edge:

import ApplitoolsPlugin from '@proff/applitools-plugin';
import { BrowserType } from '@applitools/eyes-selenium';

new ApplitoolsPlugin({
  configure(configuration) {
    configuration.addBrowser(100, 200, BrowserType.EDGE);
  }
});

Any number of browsers or emulated-browsers can be added to the test.

See Configuration for more details

FAQs

Package last updated on 06 Sep 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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc