-
-
Notifications
You must be signed in to change notification settings - Fork 727
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Allure plugin] Add/update to allure2 #2838
Comments
+1 |
use enableScreenshotDiffPlugin |
@Vorobeyko no way. Error for code above |
Can you send your config file please? |
exports.config = {
tests: './user-scenario/**/*.test.ts',
output: '../../.codeceptjs-output',
plugins: {
screenshotOnFail: {
enabled: true,
fullPageScreenshots: true,
},
allure: {
enableScreenshotDiffPlugin: true,
enabled: true,
outputDir: '.codeceptjs-output/allure-report',
},
},
helpers: {
Playwright: {
url: 'http://localhost:9999',
waitForTimeout: 8000,
waitForAction: 200,
show: !!process.env.VISUAL,
keepCookies: false,
restart: true,
windowSize: '1650x1080',
browser: 'chromium',
chromium: {
args: [
'--window-size=1650,1080',
'--disable-dev-shm-usage',
],
defaultViewport: {
width: 1650,
height: 1080,
},
executablePath: process.env.CHROMIUM_PATH,
},
},
FileSystem: {},
},
include: {
I: './settings/steps.ts',
},
bootstrap: null,
mocha: {},
name: 'e2e-tests',
require: ['ts-node/register', 'tsconfig-paths/register'],
}; |
Hi everybody. |
For completely information, allure1 has different approach and also different type of format than allure2. Old format for allure1 was |
@patrjam, do you think based on the current codeceptjs v3.0.6 with allure-commandline v2.13.8, possible to generate the |
allure plugin is now maintained by allure team https://github.com/allure-framework/allure-js/tree/master/packages/allure-codeceptjs |
Hi,
we want to use this attachments api for
screen-diff-plugin
with turn on overlay diff for every step:(PR with added API here: allure-framework/allure-js#221)
In codeceptjs repository is actually used very old package version from this repo: https://github.com/allure-framework/allure-js-commons with version
which should be deprecated and code is moved here to another repo: https://github.com/allure-framework/allure-js (latest version
2.0.0-beta.9
)I got info from Allure site, reports actually looks like this:
imagediff.zip
(Just unzip, go to folder and run
allure serve .
)The text was updated successfully, but these errors were encountered: