Giter Site home page Giter Site logo

Comments (11)

kirill-konshin avatar kirill-konshin commented on May 27, 2024 1

@Xotabu4 this would work, but this is not the optimal solution, as every project will have to drag this copy-paste. It has to be resolved at lib level.

from jest-allure.

zaqqaz avatar zaqqaz commented on May 27, 2024 1

Just include node_modules/jest-allure/dist/setup.d.ts in your tsconfig (which has declaration for global reporter), for example, like:

  "files": [ "node_modules/jest-allure/dist/setup.d.ts" ],

from jest-allure.

iamolegga avatar iamolegga commented on May 27, 2024

Any luck with this?

from jest-allure.

kirill-konshin avatar kirill-konshin commented on May 27, 2024

I just switched to official integration: https://github.com/allure-framework/allure-js, documentation is a bit missing, but things work as expected.

from jest-allure.

iamolegga avatar iamolegga commented on May 27, 2024

Ok, thanks 👍

from jest-allure.

tims-j avatar tims-j commented on May 27, 2024

Also running into this same issue. Tried implementing the core allure-js lib but still ran into typescript errors because 'reporter' could not be found on the global scope.

@kirill-konshin do you have any suggestions or could you share how you went about implementing it. As you mentioned the allure docs have a fair bit to be desired.

from jest-allure.

kirill-konshin avatar kirill-konshin commented on May 27, 2024
// jest.config.js
module.exports = {
  // regular stuff
  setupFilesAfterEnv: [require.resolve('./jest.setup.js')]
};
// jest.setup.js
const {JasmineAllureReporter} = require('allure-jasmine');
const {Status} = require('allure-js-commons');

const reporter = new JasmineAllureReporter({
    resultsDir: process.env.ALLURE_RESULTS_DIR || './allure-results',
    testMapper: result => {
        if (result.status === Status.SKIPPED) result.fullName = `(WAS SKIPPED) ${result.fullName}`;
        return result;
    }
});

const allure = reporter.getInterface();

global['jasmine'].getEnv().addReporter(reporter);
global['allure'] = allure;
global['reporter'] = reporter;

Then you can use allure global variable in tests: allure.step(...) etc.

from jest-allure.

tims-j avatar tims-j commented on May 27, 2024

@kirill-konshin awesome, thanks for that.

from jest-allure.

Xotabu4 avatar Xotabu4 commented on May 27, 2024

You can create
index.d.ts file in root of your project and put:

declare const reporter: {
    description(description: string): this;
    severity(severity: Severity): this;
    epic(epic: string): this;
    feature(feature: string): this;
    story(story: string): this;
    startStep(name: string): this;
    endStep(status?: Status): this;
    addArgument(name: string): this;
    addEnvironment(name: string, value: string): this;
    addAttachment(name: string, buffer: any, type: string): this;
    addLabel(name: string, value: string): this;
    addParameter(paramName: string, name: string, value: string): this;
}

into it

from jest-allure.

Xotabu4 avatar Xotabu4 commented on May 27, 2024

@Xotabu4 this would work, but this is not the optimal solution, as every project will have to drag this copy-paste. It has to be resolved at lib level.

Yes, thats just a workaround

from jest-allure.

kirill-konshin avatar kirill-konshin commented on May 27, 2024

When using Yarn 2 in PNP mode there won't be any node_modules...

from jest-allure.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.