The core which get used by all the other libraries
npm install @visual-knight/codeceptjs``shell`
npm install @visual-knight/codeceptjs -D
`javascript
// codeceptjs.json
{
...
"helpers": {
...
"VisualKnight": {
"require": "./node_modules/@visual-knight/codeceptjs",
"key": "YOUR_KEY",
"project": "YOUR_PROJECT_ID OR YOUR_PROJECT_NAME",
"useHelper": "Puppeteer" // define which helper you use
... // more options can be found in the core documentation
}
}
}
``