npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

vitest-qase-reporter

v1.0.2

Published

Qase TMS Vitest Reporter

Downloads

887

Readme

Qase TestOps Vitest reporter

Qase Vitest reporter sends test results and metadata to Qase.io. It can work in different test automation scenarios:

  • Create new test cases in Qase from existing autotests.
  • Report Vitest test results to existing test cases in Qase.

Testing frameworks that use Vitest as a test runner can also be used with Vitest reporter.

To install the latest version, run:

npm install --save-dev qase-vitest

Contents

Getting started

To report your tests results to Qase, install qase-vitest, and add a reporter config in the vitest.config.ts file. A minimal configuration needs just two things:

  • Qase project code, for example, in https://app.qase.io/project/DEMO the code is DEMO.
  • Qase API token, created on the Apps page.
import { defineConfig } from 'vitest/config';

export default defineConfig({
  test: {
    reporters: [
      'default',
      [
        'vitest-qase-reporter',
        {
          mode: 'testops',
          testops: {
            api: {
              token: 'api_token'
            },
            project: 'project_code',
          },
        },
      ],
    ],
  },
});

Now, run the Vitest tests as usual. Test results will be reported to a new test run in Qase.

$ npx vitest run
Determining test suites to run...
...
qase: Project DEMO exists
qase: Using run 42 to publish test results
...

Ran all test suites.

Using Reporter

The Vitest reporter has the ability to auto-generate test cases and suites from your test data.

But if necessary, you can independently register the ID of already existing test cases from TMS before the executing tests. For example:

Metadata

  • qase.title - set the title of the test case
  • qase.fields - set the fields of the test case
  • qase.suite - set the suite of the test case
  • qase.comment - set the comment of the test case
  • qase.parameters - set the parameters of the test case
  • qase.groupParameters - set the group parameters of the test case
  • qase.ignore - ignore the test case in Qase. The test will be executed, but the results will not be sent to Qase.
  • qase.step - create a step in the test case
  • qase.attach - attach a file to the test case
import { describe, it, test, expect } from 'vitest';
import { qase, withQase } from 'vitest-qase-reporter/vitest';

describe('My First Test', () => {
  test(qase([1, 2], 'Several ids'), () => {
    expect(true).toBe(true);
  });

  test(qase(3, 'Correct test'), () => {
    expect(true).toBe(true);
  });

  test.skip(qase('4', 'Skipped test'), () => {
    expect(true).toBe(true);
  });

  test(qase(['5', '6'], 'Failed test'), () => {
    expect(true).toBe(false);
  });
});

Advanced Usage with Annotations

import { describe, it, expect } from 'vitest';
import { qase, withQase } from 'vitest-qase-reporter/vitest';

describe('Qase Annotations Example', () => {
  it(qase(20, 'Basic test with qase ID'), () => {
    expect(1 + 1).toBe(2);
  });

  it('Test with qase annotations', withQase(async ({ qase, annotate }) => {
    // Set test title
    await qase.title('Advanced Test with Annotations');
    
    // Add comment
    await qase.comment('This test demonstrates qase annotations functionality');
    
    // Set suite
    await qase.suite('Vitest Integration Suite');
    
    // Set fields
    await qase.fields({
      description: 'Test description for Qase',
      severity: 'critical',
      priority: 'high',
      layer: 'e2e'
    });
    
    // Set parameters
    await qase.parameters({
      environment: 'staging',
      browser: 'chrome',
      version: '1.0.0'
    });
    
    // Add steps
    await qase.step('Initialize test data', async () => {
      expect(true).toBe(true);
    });
    
    await qase.step('Execute main test logic', async () => {
      expect(2 + 2).toBe(4);
    });
    
    // Add attachment with content
    await qase.attach({
      name: 'test-data.json',
      content: JSON.stringify({ test: 'data' }),
      type: 'application/json'
    });
    
    // Use regular annotate for custom annotations
    await annotate('Custom annotation message', 'info');
    
    // Final assertion
    expect(Math.max(1, 2, 3)).toBe(3);
  }));
});

To run tests and create a test run, execute the command (for example from folder examples):

QASE_MODE=testops npx vitest run

or

npm test

A test run will be performed and available at:

https://app.qase.io/run/QASE_PROJECT_CODE

Configuration

Reporter options (* - required):

  • mode - testops/off Enables reporter, default - off
  • debug - Enables debug logging, default - false
  • environment - To execute with the sending of the environment information
  • captureLogs - Capture console logs, default - false
  • uploadAttachments - Upload attachments to Qase, default - false
  • *testops.api.token - Token for API access, you can generate it here.
  • *testops.project - Your project's code
  • testops.api.baseUrl - Qase API base URL (optional)
  • testops.run.id - Qase test run ID, used when the test run was created earlier using CLI or API call.
  • testops.run.title - Set custom Run name, when new run is created
  • testops.run.description - Set custom Run description, when new run is created
  • testops.run.complete - Whether the run should be completed

Example vitest.config.ts config:

import { defineConfig } from 'vitest/config';

export default defineConfig({
  test: {
    reporters: [
      'default',
      [
        'vitest-qase-reporter',
        {
          mode: 'testops',
          testops: {
            api: {
              token: 'api_key'
            },
            project: 'project_code',
            run: {
              complete: true,
            },
            uploadAttachments: true,
          },
          debug: true,
          captureLogs: true,
        },
      ],
    ],
  },
});

You can check example configuration with multiple reporters in example project.

Supported ENV variables:

  • QASE_MODE - Same as mode
  • QASE_DEBUG - Same as debug
  • QASE_ENVIRONMENT - Same as environment
  • QASE_TESTOPS_API_TOKEN - Same as testops.api.token
  • QASE_TESTOPS_PROJECT - Same as testops.project
  • QASE_TESTOPS_RUN_ID - Pass Run ID from ENV and override reporter option testops.run.id
  • QASE_TESTOPS_RUN_TITLE - Same as testops.run.title
  • QASE_TESTOPS_RUN_DESCRIPTION - Same as testops.run.description

Documentation

For detailed documentation and advanced usage, see USAGE.md.

Requirements

We maintain the reporter on LTS versions of Node. You can find the current versions by following the link

vitest >= 3.0.0