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();
});