JSPM

  • Created
  • Published
  • Downloads 148483
  • Score
    100M100P100Q239557F
  • License MIT

Web test runner core

Package Exports

  • @web/test-runner-core
  • @web/test-runner-core/browser/session.js
  • @web/test-runner-core/test-helpers

Readme

Web Test Runner Core

Core package for Web Test Runner. Manages running the tests. Has a modular architecture, delegating most of the work to the separate parts and implementations.

See @web/test-runner for a default implementation and CLI for the test runner.

Browser launchers

Browser launchers boot up and control a browser instance. Implementations:

Read more here to learn about creating your own browser launcher.

Test frameworks

Test frameworks run the actual tests in the browser. Web test runner relies on existing test frameworks. Implementations:

Read more here to learn more about setting up a custom test reporter.

Reporters

Reporters report test results and/or progress. The CLI ships a default reporter. Implementations:

Read more here to learn more about using the browser library without a testing framework, or to implement your own testing framework.

Servers

The server serves the test code and files and communicates with the browser, returning configuration and receiving test results. Implementations:

Read more here to learn about creating your own test runner server.