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

@iobroker/vis-2-widgets-testing

v2.0.0

Published

Module to test ioBroker vis-2 widgets

Readme

ioBroker.vis-2-widgets-testing

With this library, you can test your own widgets for ioBroker.vis 2.0.

How to use

The package is written in TypeScript and ships its own type declarations, so the helpers are typed in JavaScript tests too.

Create the file test/widgets.test.ts with the following content:

import type { Browser, Page } from 'puppeteer';
import * as helper from '@iobroker/vis-2-widgets-testing';
import { name } from '../package.json';

// get the name of the widget set from package.json, e.g. `vis-2-widgets-material`
const adapterName = name.split('.').pop() as string;

let page: Page;
let browser: Browser;

describe(adapterName, () => {
    before(async function () {
        this.timeout(180_000); // because the installation could last some time

        // install js-controller, web and vis-2
        await helper.startIoBroker({ widgetsSetName: adapterName });

        // start the browser
        const result = await helper.startBrowser(true); // true = headless
        browser = result.browser;
        page = result.page;

        // create the default vis-2 project
        await helper.createProject(page);

        // open the palette of the own widget set
        await helper.palette.openWidgetSet(page, adapterName);
        await helper.screenshot(page, '02_widgets_opened');
    });

    it('Check all widgets', async function () {
        this.timeout(60_000);

        for (const widgetName of await helper.palette.getListOfWidgets(page, adapterName)) {
            const wid = await helper.palette.addWidget(page, widgetName);
            await helper.screenshot(page, `10_${widgetName}`);
            await helper.view.deleteWidget(page, wid);
        }
    });

    after(async function () {
        this.timeout(10_000);
        await helper.stopBrowser(browser);
        await helper.stopIoBroker();
    });
});

A test in JavaScript works just the same, the module is published as CommonJS:

const helper = require('@iobroker/vis-2-widgets-testing');

Create the task in package.json:

  "scripts": {
    ...
    "test": "mocha ./test/*.test.ts"
  },

Add mocha to devDependencies:

  "devDependencies": {
    ...
    "mocha": "^12.0.0"
  },

Options of startIoBroker

| Option | Default | Description | | ---------------------- | ---------------------- | --------------------------------------------------------------------- | | rootDir | the project under test | Directory that holds tmp/ and the package.json of the widget set. | | widgetsSetName | from package.json | Name of the widget set, e.g. vis-2-widgets-material. | | additionalAdapters | ['web', 'vis-2'] | Adapters that are installed next to the js-controller. | | startOwnAdapter | false | Start the adapter of the widget set itself too. | | mainGuiProject | from the adapters | vis or vis-2. | | visUploadedTimeoutMs | 120000 | How long to wait until the GUI adapter has uploaded its files. |

Development

npm run build   # compile src/index.ts to build/
npm run check   # type check only
npm run lint    # eslint

Changelog

2.0.0 (2026-09-21)

  • (@typhosj) Wait for basic widgets instead of the view tabs
  • (@GermanBluefox) Changed add widget procedure
  • (@GermanBluefox) Works only with vis-2 >= 2.20

1.0.7 (2026-09-04)

  • (bluefox) Migrated the library to TypeScript. The package is compiled to build/ and ships type declarations; the public API is unchanged.

1.0.6 (2025-05-19)

  • (bluefox) Packages updated

1.0.5 (2024-12-02)

  • (bluefox) Packages updated
  • (bluefox) Added timeout parameter to deleteWidget

1.0.4 (2024-06-30)

  • (bluefox) Packages updated

1.0.3 (2024-04-14)

  • (bluefox) added support for the once mode

1.0.2 (2024-04-10)

  • (bluefox) adjusted vis-2 testing

1.0.1 (2024-04-08)

  • (foxriver76) pass options down to set up

1.0.0 (2023-12-15)

  • (bluefox) added vis-1 testing

0.3.0 (2023-07-28)

  • (bluefox) vis-2-beta is replaced with vis-2

0.2.7 (2023-05-09)

  • (bluefox) initial commit

License

The MIT License (MIT)

Copyright (c) 2023-2026 bluefox [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.