/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/specs/node/node_test_module_only/test.js
14 строк
338 B
Divy
fix(ext/node): Fix `.only` tests compatibilty (#32043)
05 фев 2026, 12:03
Не верифицирован
05 фев 2026, 12:03
83d7b0c
Код
Авторство
О чём код?
import { describe, it, test } from "node:test"; describe.only("a suite", () => { it("a test", () => {}); }); test.only("a test only", () => {}); it.only("an it only", () => {}); // This should be filtered out by the "only" tests above test("should not run", () => { throw new Error("this test should have been filtered out"); });