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

@playwright-manager/eslint-plugin

v0.1.0

Published

ESLint plugin to enforce @playwright-manager/fixture imports

Readme

@playwright-manager/eslint-plugin

ESLint plugin to enforce importing test and expect from @playwright-manager/fixture instead of @playwright/test.

Why?

When using @playwright-manager/fixture, you must import test and expect from the fixture package to enable:

  • Auto-skip functionality from the dashboard
  • Test health tracking
  • Skip rule integration

If you accidentally import from @playwright/test directly (e.g., via IDE autocomplete), these features won't work for those tests.

Installation

npm install -D @playwright-manager/eslint-plugin
# or
pnpm add -D @playwright-manager/eslint-plugin

Configuration

Flat Config (ESLint 9+)

// eslint.config.mjs
import playwrightManager from "@playwright-manager/eslint-plugin";

export default [
  // Use the recommended config
  ...playwrightManager.configs.recommended,
];

Or apply only to test files:

// eslint.config.mjs
import playwrightManager from "@playwright-manager/eslint-plugin";

export default [
  {
    files: ["**/*.spec.ts", "**/*.test.ts", "**/tests/**/*.ts"],
    plugins: {
      "@playwright-manager": playwrightManager,
    },
    rules: {
      "@playwright-manager/require-fixture-imports": "error",
    },
  },
];

Legacy Config (ESLint 8)

{
  "plugins": ["@playwright-manager"],
  "rules": {
    "@playwright-manager/require-fixture-imports": "error"
  }
}

Or with overrides for test files only:

{
  "overrides": [
    {
      "files": ["**/*.spec.ts", "**/*.test.ts"],
      "plugins": ["@playwright-manager"],
      "rules": {
        "@playwright-manager/require-fixture-imports": "error"
      }
    }
  ]
}

Rules

@playwright-manager/require-fixture-imports

Enforces that test and expect are imported from @playwright-manager/fixture.

Will Flag (Error)

// Error: Import 'test' from '@playwright-manager/fixture' instead
import { test } from "@playwright/test";

// Error: Import 'expect' from '@playwright-manager/fixture' instead
import { expect } from "@playwright/test";

// Error: Import 'test' and 'expect' from '@playwright-manager/fixture' instead
import { test, expect } from "@playwright/test";

// Error: Import 'test' from '@playwright-manager/fixture' instead
import test from "@playwright/test";

Will NOT Flag (Allowed)

// Correct usage
import { test, expect } from "@playwright-manager/fixture";

// Types and utilities from @playwright/test are allowed
import { Page, Browser, BrowserContext } from "@playwright/test";
import type { PlaywrightTestConfig } from "@playwright/test";

// Namespace imports are allowed
import * as pw from "@playwright/test";

Auto-fix

The rule provides automatic fixes:

Simple case - replaces import source:

// Before
import { test, expect } from "@playwright/test";

// After fix
import { test, expect } from "@playwright-manager/fixture";

Mixed imports - splits into two imports:

// Before
import { test, expect, Page } from "@playwright/test";

// After fix
import { test, expect } from "@playwright-manager/fixture";
import { Page } from "@playwright/test";

Preserves aliases:

// Before
import { test as baseTest, expect } from "@playwright/test";

// After fix
import { test as baseTest, expect } from "@playwright-manager/fixture";

Options

{
  "@playwright-manager/require-fixture-imports": ["error", {
    // Flag additional imports beyond test and expect
    "additionalImports": ["mergeTests"]
  }]
}

License

MIT