/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
declarations.test.d.ts
32 строки
757 B
Alexander Akait
Cut Bun test skips down to the few cases Bun genuinely can't run (#21239)
21 июн 2026, 21:58
Не верифицирован
21 июн 2026, 21:58
10f5fcc
Код
Авторство
О чём код?
declare module "*.json"; // optional peer of webpack-cli, not installed declare module "webpack-dev-server"; // only required by a few CSS test cases; ships no types declare module "less"; declare module "less-loader"; type Env = Record<string, any>; type TestOptions = { testPath: string; srcPath: string }; // jest-circus internal state, exposed on `global` by test/patch-node-env.js // eslint-disable-next-line no-var declare var JEST_STATE_SYMBOL: import("@jest/types").Circus.State; declare namespace jest { interface Matchers<R> { toBeTypeOf: ( expected: | "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function" ) => void; toEndWith: (expected: string) => void; } }