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

@wdio/browser-runner

v9.21.0

Published

A WebdriverIO runner to run unit tests tests in the browser.

Readme

WebdriverIO Browser Runner

A WebdriverIO runner to run unit and component tests within the browser.

As opposed to the Local Runner the Browser Runner initiates and executes the framework within the browser. This allows you to run unit tests or component tests in an actual browser rather than in a JSDOM like many other test frameworks.

While JSDOM is widely used for testing purposes, it is in the end not an actual browser nor can you emulate mobile environments with it. With this runner WebdriverIO enables you to easily run your tests in the browser and use WebDriver commands to interact with elements rendered on the page.

Here is an overview of running tests within JSDOM vs. WebdriverIOs Browser Runner

| | JSDOM | WebdriverIO Browser Runner | |-|-------|----------------------------| |1.| Runs your tests within Node.js using a re-implementation of web standards, notably the WHATWG DOM and HTML Standards | Executes your test in an actual browser and runs the code in an environment that your users use | |2.| Interactions with components can only be imitated via JavaScript | You can use the WebdriverIO API to interact with elements through the WebDriver protocol | |3.| Canvas support requires additional dependencies and has limitations | You have access to the real Canvas API | |4.| JSDOM has some caveats and unsupported Web APIs | All Web APIs are supported as test run in an actual browser | |5.| Impossible to detect errors cross browser | Support for all browsers including mobile browser | |6.| Can not test for element pseudo states | Support for pseudo states such as :hover or :active |

This runner uses Vite to compile your test code and load it in the browser. It comes with presets for the following component frameworks:

  • React
  • Preact
  • Vue.js
  • Svelte
  • SolidJS

Every test file / test file group runs within a single page which means that between each test the page is being reloaded to guarantee isolation between tests.

Install

To use the Browser Runner you can install it via:

npm install --save-dev @wdio/browser-runner

Setup

To use the Browser runner, you have to define a runner property within your wdio.conf.js file, e.g.:

// wdio.conf.js
export const {
    // ...
    runner: 'browser',
    // ...
}

Runner Options

The Browser runner allows following configurations:

preset

If you test components using one of the mentioned frameworks above, you can define a preset that ensures everything is configured out of the box. This option can't be used together with viteConfig.

Type: vue | svelte | solid | react | preact | stencil Example:

export const {
    // ...
    runner: ['browser', {
        preset: 'svelte'
    }],
    // ...
}

viteConfig

Define your own Vite configuration. You can either pass in a custom object or import an existing vite.conf.ts file if you use Vite.js for development. Note that WebdriverIO merges custom configurations to set up framework and runner objects. This option can't be used together with preset.

Type: UserConfig Example:

import viteConfig from '../vite.config.ts'

export const {
    // ...
    runner: ['browser', { viteConfig }],
    // ...
}

headless

If set to true the runner will update capabilities to run tests headless. By default this is enabled within CI environments where a CI environment variable is set to '1' or 'true'.

Type: boolean Default: false, set to true if CI environment variable is set

rootDir

Project root directory.

Type: string Default: process.cwd()

coverage

WebdriverIO supports test coverage reporting through istanbul. See Coverage Options for more details.

Type: object Default: undefined

Coverage Options

The following options allow to configure coverage reporting.

enabled

Enables coverage collection.

Type: boolean Default: false

include

List of files included in coverage as glob patterns.

Type: string[] Default: [**]

exclude

List of files excluded in coverage as glob patterns.

Type: string[] Default:

[
  'coverage/**',
  'dist/**',
  'packages/*/test{,s}/**',
  '**/*.d.ts',
  'cypress/**',
  'test{,s}/**',
  'test{,-*}.{js,cjs,mjs,ts,tsx,jsx}',
  '**/*{.,-}test.{js,cjs,mjs,ts,tsx,jsx}',
  '**/*{.,-}spec.{js,cjs,mjs,ts,tsx,jsx}',
  '**/__tests__/**',
  '**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build}.config.*',
  '**/.{eslint,mocha,prettier}rc.{js,cjs,yml}',
]

extension

List of file extensions the report should include.

Type: string | string[] Default: ['.js', '.cjs', '.mjs', '.ts', '.mts', '.cts', '.tsx', '.jsx', '.vue', '.svelte']

reportsDirectory

Directory to write coverage report to.

Type: string Default: ./coverage

reporter

Coverage reporters to use. See istanbul documentation for detailed list of all reporters.

Type: string[] Default: ['text', 'html', 'clover', 'json-summary']

perFile

Check thresholds per file. See lines, functions, branches and statements for the actual thresholds.

Type: boolean Default: false

clean

Clean coverage results before running tests.

Type: boolean Default: true

lines

Threshold for lines.

Type: number Default: undefined

functions

Threshold for functions.

Type: number Default: undefined

branches

Threshold for branches.

Type: number Default: undefined

statements

Threshold for statements.

Type: number Default: undefined

Examples

Make sure to check out the docs around component testing and have a look into the example repository for examples using these and various other frameworks.


For more information on WebdriverIO runner, check out the documentation.