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.' )
} );
} );