Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
allure-jest
Advanced tools
Allure framework integration for Jest
Warning This package only works with the
jest-circus
test runner for Jest. It's the default runner for Jest starting from 27.0.0. If you usejest@<27.0.0
, you should installjest-circus
manually and set thetestRunner
Jest option to"jest-circus/runner"
. If you're ajest-jasmine2
user, consider switching tojest-circus
. If that's not an option for you, please use allure-jasmine instead.
The docs for Allure Jest are available at https://allurereport.org/docs/jest/.
Also, check out the examples at github.com/allure-examples.
Install allure-jest
using a package manager of your choice. For example:
npm install -D allure-jest
If you're a Yarn PnP user, you must also explicitly install the Jest environment package and
allure-js-commons
. For example:yarn add --dev jest-environment-node allure-js-commons
Keep in mind, that
allure-js-commons
andallure-jest
must have the same version. The same goes for all Jest packages (jest
,jest-circus
,jest-environment-node
, etc). Useyarn info
to check the versions.
Set the testEnvironment
Jest option according to your needs:
"allure-jest/jsdom"
(make sure jest-environment-jsdom is installed)."allure-jest/node"
.Example:
const config = {
testEnvironment: "allure-jest/jsdom",
};
export default config;
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 behavior of Allure Jest 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 runtime API:
import * as allure from "allure-js-commons";
describe("signing in with a password", () => {
it("should sign in with a valid password", async () => {
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.feature("Sign in with a password");
await allure.story("As an active user, I want to successfully sign in using a valid password");
await allure.tags("signin", "ui", "positive");
await allure.issue("https://github.com/allure-framework/allure-js/issues/4", "ISSUE-4");
await allure.owner("eroshenkoam");
await allure.parameter("browser", "chrome");
const user = await allure.step("Prepare the user", async () => {
return await createAnActiveUserInDb();
});
await allure.step("Make a sign-in attempt", async () => {
await allure.step("Navigate to the sign in page", async () => {
// ...
});
await allure.step("Fill the sign-in form", async (stepContext) => {
await stepContext.parameter("login", user.login);
await stepContext.parameter("password", user.password, "masked");
// ...
});
await allure.step("Submit the form", async () => {
// ...
// const responseData = ...
await allure.attachment("response", JSON.stringify(responseData), { contentType: "application/json" });
});
});
await allure.step("Assert the signed-in state", async () => {
// ...
});
});
});
More details about the API are available at https://allurereport.org/docs/jest-reference/.
To use Allure-Jest with custom environments, you can use the createJestEnvironment
helper function:
import CustomTestEnvironment from "jest-environment-custom";
import { createJestEnvironment } from "allure-jest/factory";
export default createJestEnvironment(CustomTestEnvironment);
FAQs
Allure Jest integration
The npm package allure-jest receives a total of 18,527 weekly downloads. As such, allure-jest popularity was classified as popular.
We found that allure-jest 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
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.