Socket
Book a DemoInstallSign in
Socket

@clds/e2e

Package Overview
Dependencies
Maintainers
1
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@clds/e2e

---

latest
Source
npmnpm
Version
0.38.0
Version published
Weekly downloads
90
718.18%
Maintainers
1
Weekly downloads
 
Created
Source

@clds/e2e

npm version

Mixins

This package contains common E2E factories (mixins) that can be used when creating agnostic E2E drivers.
Each factory can add one or more functions to the driver, those functions can be used later to interact with the relevant component

** mixins that do not return any value can be concat in the following way:**

import { makeClickable } from '@clds/e2e-ds-utils';

const createDriver = <A, B>(adapter: Adapter<A, B>) => {
  const selector = 'div[data-test="our-component"]' as const;

  return {
    ...makeClickable(adapter, selector),
    selector,
  };
};

Drivers

This package contains e2e drivers for all the components as well

Versioning

This library follows Semantic Versioning.

License

See LICENSE

FAQs

Package last updated on 08 Jan 2024

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