Download Latest Version v0.31.0 source code.tar.gz (981.9 kB)
Email in envelope

Get an email when there's a new version of AskUI

Home / v0.29.0
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2025-10-17 1.1 kB
v0.29.0 source code.tar.gz 2025-10-17 976.0 kB
v0.29.0 source code.zip 2025-10-17 1.0 MB
Totals: 3 Items   2.0 MB 0

0.29.0 (2025-10-17)

⚠ BREAKING CHANGES

  • @askui/jest-allure-circus: Migrate the TestEnvironment from @askui/jest-allure-circus to allure-jest/node in jest.config.ts

Install allure-jest@3.3.0 and allure-js-commons@3.3.0 environment:

npm install --save-dev allure-jest@3.3.0 allure-js-commons@3.3.0 @askui/askui-reporters npm uninstall @askui/jest-allure-circus

:::typescript
import type { Config } from "@jest/types";

const config: Config.InitialOptions = {
  preset: "ts-jest",
  setupFilesAfterEnv: ["./helper/askui-helper.ts"], // former `./helper/jest.setup.ts`
  sandboxInjectedGlobals: ["Math"],
  testEnvironment: "allure-jest/node",
};

// eslint-disable-next-line import/no-default-export
export default config;

Features

  • @askui/jest-allure-circus: replace @askui/jest-allure-circus with allure-jest/node (65b8ea7)
Source: README.md, updated 2025-10-17