JSPM

cypress-woocommerce

0.1.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 37
  • Score
    100M100P100Q23662F
  • License GPL-3.0

End-To-End (E2E) test utils for WooCommerce

Package Exports

  • cypress-woocommerce

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (cypress-woocommerce) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Cypress WooCommerce

Adds WooCommerce support to Cypress.

Installation

npm install -D cypress-woocommerce

Usage

Example:

import {
    CustomerFlow,
    StoreOwnerFlow
} from 'cypress-woocommerce';

describe( 'Cart page', () => {
    before( () => {
        StoreOwnerFlow.login();
        StoreOwnerFlow.openSettings();
        StoreOwnerFlow.logout();
    } );

    it( 'should display no item in the cart', () => {
        CustomerFlow.goToCart()
        cy.contains( '.cart-empty', 'Your cart is currently empty.' )
    } );
} );