Package Exports
- qualityc
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 (qualityc) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Qualityc NPM Module
Helper methods for qualityc.app
Install
npm install qualityc
Usage
const qualityc = require('qualityc')
addCheckpoint
Use this method with a screenshot data to create a checkpoint on qualityc.app.
driver.takeScreenshot().then(function(screenshot) {
qualityc.addCheckpoint('Checkpoint name', screenshot)
})
addLog
Use this method to create a log message on qualityc.app.
qualityc.addLog('Log message')