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 🙏

© 2026 – Pkg Stats / Ryan Hefner

d2l-test-reporting

v6.0.2

Published

Helper package for generating reports for use with the D2L test reporting framework

Downloads

43,235

Readme

d2l-test-reporting

License Version Release Node Version

Helper package for generating reports for use with the D2L test reporting framework. Reporters in this package produce a structured JSON report file that can be uploaded to the D2L test reporting back-end using the corresponding GitHub Action.

[!NOTE] If you have any questions, concerns or just want to chat feel free to reach out in #test-reporting (D2L employee accessible only).

Installation

Install the package as a dev dependency since it is only used during test execution.

npm install --save-dev d2l-test-reporting

Usage

This library provides built-in reporters for several test execution frameworks used at D2L, along with a ReportBuilder class for building custom reporters.

Configuration

A D2L test reporting configuration file is required when using one of the reporters in this package. It maps test files to a test type and tool, which are recorded in the output report. By default, reporters look for a file named d2l-test-reporting.config.json at the root of the repository. This path can be changed using the reportConfigurationPath option available on each reporter, though the default is sufficient for most projects.

See Report Configuration for examples, and Report Configuration Format for schema details.

Reporters

Each reporter wraps your test framework and emits a D2L test report JSON file when the test run completes. The following frameworks are supported.

Custom Reporters

If your test framework isn't supported by the built-in reporters, you can build your own using the ReportBuilder class. See Report Builder for a complete walkthrough of creating a custom reporter for any test framework.

Output

Reporters in this package output the D2L test report JSON format, which is required by the GitHub Action to upload results to the back-end. For details on the schema, see Report Format.

Developing

After cloning the repository, make sure to install dependencies.

npm ci
npx playwright install --with-deps

Linting

# eslint and editorconfig-checker
npm run lint

# eslint only
npm run lint:eslint

# editorconfig-checker only
npm run lint:editorconfig

Fixing

# currently only eslint
npm run fix

# eslint only
npm run fix:eslint

Testing

# lint, unit tests and integration tests
npm test

# unit tests and integration tests only
npm run test:all

# unit tests only
npm run test:unit

# integration tests only
npm run test:integration

Versioning and Releasing

This repo is configured to use semantic-release. Commits prefixed with fix: and feat: will trigger patch and minor releases when merged to main.

To learn how to create major releases and release from maintenance branches, refer to the semantic-release GitHub Action documentation.