0.1.1 • Published 7 years ago
jest-screenshot-reporter-sway-fork v0.1.1
jest-screenshot-reporter
Capture screenshots as a report for failed tests on Selenium WebDriver.
npm install --save-dev jest-screenshot-reporterUsage
While Jest reporters mechanism does not allow doing stuff after each test, the screenshot reporter should be added to Jasmine config.
Create a file for Jasmine configuration:
const JestScreenshotReporter = require('jest-screenshot-reporter');
jasmine.getEnv().addReporter(new JestScreenshotReporter({ browser }));And add it Jest config:
"setupTestFrameworkScriptFile": "./jasmine.config.js",Reporter API
The reporter receives next options when instantiating via new JestScreenshotReporter({ ... }):
browser— globalWebDriverinstance that is introduced byjest-environment-webdriversavePath— path to the screenshots destination folder. Default is./reports/screenshots