no-focused-test Disallow focused tests and suites A focused test or suite prevents unrelated tests from running and can conceal regressions. Instead, you MUST remove the focus modifier before committing the test. - Category: suspicious - Level: error - Fix: automatic - Scope: module Reported import { test } from "destack:test"; test.only("adds values", () => { // ... }); Accepted import { test } from "destack:test"; test("adds values", () => { // ... }); Prior art - eslint-plugin-jest · no-focused-tests - eslint-plugin-playwright · no-focused-test language/linter/src/rules/suspicious/nofocusedtest.rs:8