/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ext/node/polyfills/testing_esm.ts
19 строк
322 B
Bartek Iwańczuk
feat(node): implement getTestContext() in node:test (#35678)
01 июл 2026, 20:41
Не верифицирован
01 июл 2026, 20:41
dddb255
Код
Авторство
О чём код?
// Copyright 2018-2026 the Deno authors. MIT license. import { core } from "ext:core/mod.js"; const mod = core.loadExtScript("ext:deno_node/testing.ts"); export const { run, test, suite, it, describe, before, after, beforeEach, afterEach, mock, getTestContext, } = mod; export default mod.default;