@smartesting/gravity-cypress-plugin
v0.1.12
Published
[![Node.js CI](https://github.com/Smartesting/gravity-cypress-plugin/actions/workflows/node.js.yml/badge.svg?branch=main)](https://github.com/Smartesting/gravity-cypress-plugin/actions/workflows/node.js.yml)
Downloads
582
Keywords
Readme
gravity-cypress-plugin
Setting up the plugin
Your first have to install the plugin in your project:
npm i --save-dev @smartesting/gravity-cypress-plugin
You then need to hook the plugin in Cypress, this is typically done in cypress.config.ts
:
import { gravityCypressPlugin } from "@smartesting/gravity-cypress-plugin";
module.exports = defineConfig({
e2e: {
setupNodeEvents(on, config) {
gravityCypressPlugin(on, config, {
authKey: "Your test collection auth key",
});
},
},
});
Note: do not use conditions when calling gravityCypressPlugin
, otherwise the before and after hooks will fail. If you want to disable tracking (for example while running the test locally), you can simply set the value of authKey
to undefined
).
You will then need to set up some before/after each hook. This can be done in cypress/support/e2e.ts
:
import {
setupGravity,
teardownGravity,
} from "@smartesting/gravity-cypress-plugin";
beforeEach(() => {
setupGravity();
});
afterEach(() => {
teardownGravity();
});