/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/TestCasesAllCombined.longtest.js
26 строк
516 B
Alexander Akait
refactor: strict types for the test suite (#21147)
09 июн 2026, 20:15
Не верифицирован
09 июн 2026, 20:15
9bd0b91
Код
Авторство
О чём код?
"use strict"; const { describeCases } = require("./TestCases.template"); describe("TestCases", () => { describeCases( /** @type {EXPECTED_ANY} */ ({ name: "all-combined", mode: "production", devtool: "source-map", minimize: true, optimization: { moduleIds: "named", chunkIds: "named" }, plugins: [ /** @param {import("../").Compiler} c compiler */ (c) => { const webpack = require(".."); new webpack.HotModuleReplacementPlugin().apply(c); } ] }) ); });