How to use the allure-js-commons.Stage.RUNNING function in allure-js-commons

To help you get started, we’ve selected a few allure-js-commons examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github allure-framework / allure-js / packages / allure-jasmine / src / JasmineAllureReporter.ts View on Github external
specStarted(spec: jasmine.CustomReporterResult): void {
    let currentGroup = this.getCurrentGroup();
    if (currentGroup === null) throw new Error("No active suite");

    currentGroup = currentGroup.startGroup("Test wrapper"); // needed to hold beforeEach/AfterEach
    this.groupStack.push(currentGroup);

    const name = spec.description;
    const allureTest = currentGroup.startTest(name);
    if (this.runningTest != null) throw new Error("Test is starting before other ended!");
    this.runningTest = allureTest;

    allureTest.fullName = spec.fullName;
    allureTest.historyId = spec.fullName;
    allureTest.stage = Stage.RUNNING;

    // ignore wrapper, index + 1
    if (this.groupStack.length > 1) {
      allureTest.addLabel(LabelName.PARENT_SUITE, this.groupStack[0].name);
    }
    if (this.groupStack.length > 2) {
      allureTest.addLabel(LabelName.SUITE, this.groupStack[1].name);
    }
    if (this.groupStack.length > 3) {
      allureTest.addLabel(LabelName.SUB_SUITE, this.groupStack[2].name);
    }
    // TODO: if more depth add something to test name

    for (const labels of this.labelStack) {
      for (const label of labels) {
        allureTest.addLabel(label.name, label.value);
github allure-framework / allure-js / packages / allure-mocha / src / AllureReporter.ts View on Github external
public startCase(test: Mocha.Test) {
    if (this.currentSuite === null) {
      throw new Error("No active suite");
    }

    this.currentTest = this.currentSuite.startTest(test.title);
    this.currentTest.fullName = test.title;
    this.currentTest.historyId = createHash("md5")
      .update(test.fullTitle())
      .digest("hex");
    this.currentTest.stage = Stage.RUNNING;

    if (test.parent) {
      const [parentSuite, suite, ...subSuites] = test.parent.titlePath();
      if (parentSuite) {
        this.currentTest.addLabel(LabelName.PARENT_SUITE, parentSuite);
      }
      if (suite) {
        this.currentTest.addLabel(LabelName.SUITE, suite);
      }
      if (subSuites.length > 0) {
        this.currentTest.addLabel(LabelName.SUB_SUITE, subSuites.join(" > "));
      }
    }
  }