https://github.com/qavajs/steps-visual-testing
steps to perform visual testing
https://github.com/qavajs/steps-visual-testing
qa test-automation testing
Last synced: 7 days ago
JSON representation
steps to perform visual testing
- Host: GitHub
- URL: https://github.com/qavajs/steps-visual-testing
- Owner: qavajs
- License: mit
- Created: 2022-10-18T08:10:06.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T07:24:27.000Z (6 months ago)
- Last Synced: 2024-10-29T08:18:40.764Z (6 months ago)
- Topics: qa, test-automation, testing
- Language: TypeScript
- Size: 358 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# @qavajs/steps-visual-testing
Step library to perform visual testing## installation
`npm install @qavajs/steps-visual-testing`
## configuration
```javascript
const Memory = require('./memory');module.exports = {
default: {
require: [
'@qavajs/steps-visual-testing/index.js'
],
memory: new Memory()
}
}
```