no-skipped-test Disallow skipped tests and suites A skipped test or suite leaves expected behavior unverified while the test run can still pass. Instead, you SHOULD restore the test or remove obsolete coverage. - Category: suspicious - Level: warning - Fix: none - Scope: module Reported import { test } from "destack:test"; test.skip("adds values", () => { // ... }); Accepted import { test } from "destack:test"; test("adds values", () => { // ... }); Prior art - eslint-plugin-jest · no-disabled-tests - eslint-plugin-playwright · no-skipped-test language/linter/src/rules/suspicious/noskippedtest.rs:6