![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
allure-cucumberjs
Advanced tools
Allure integration for
cucumber-js
compatible with@cucumber/cucumber@^8.x.x
and Allure 2+.
The docs for Allure Cucumber.js are available at https://allurereport.org/docs/cucumberjs/.
Also, check out the examples at github.com/allure-examples.
Install allure-cucumberjs
using a package manager of your choice. For example:
npm install -D allure-cucumberjs
If you're a Yarn PnP user, please read this.
Enable the allure-cucumberjs/reporter
formatter in the Cucumber.js configuration file:
{
"default": {
"format": [
"allure-cucumberjs/reporter"
]
}
}
Alternatively, you may specify the formatter via the CLI:
npx cucumber-js --format allure-cucumberjs/reporter
When the test run completes, the result files will be generated in the ./allure-results
directory.
You may select another location, or further customize the formatter's behavior with the configuration options.
You need Allure Report to be installed on your machine to generate and open the report from the result files. See the installation instructions on how to get it.
Generate Allure Report after the tests are executed:
allure generate ./allure-results -o ./allure-report
Open the generated report:
allure open ./allure-report
Enhance the report by utilizing the Allure API:
import { When } from "@cucumber/cucumber";
import * as allure from "allure-js-commons";
Given("an active user", async function () {
await allure.description("The test checks if an active user with a valid password can sign in to the app.");
await allure.epic("Signing in");
await allure.tags("signin", "ui", "positive");
await allure.issue("https://github.com/allure-framework/allure-js/issues/1", "ISSUE-1");
await allure.owner("eroshenkoam");
await allure.parameter("browser", "chrome");
this.user = await createAnActiveUserInDb();
});
When("they sign in with a valid password", async function () {
await allure.step("Navigate to the sign in page", async () => {
// ...
});
await allure.step("Fill the sign-in form", async (stepContext) => {
await stepContext.parameter("login", this.user.login);
await stepContext.parameter("password", this.user.password, "masked");
// ...
});
await allure.step("Submit the form", async () => {
// ...
// const responseData = ...
await allure.attachment("response", JSON.stringify(responseData), { contentType: "application/json" });
});
});
// ...
More details about the API are available at https://allurereport.org/docs/cucumberjs-reference/.
FAQs
Allure Cucumber.JS integration
The npm package allure-cucumberjs receives a total of 32,821 weekly downloads. As such, allure-cucumberjs popularity was classified as popular.
We found that allure-cucumberjs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.