/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/css/runtime-issue/entry1.js
14 строк
355 B
Alexander Akait
feat: improve localIdentName hashing
26 ноя 2025, 14:08
Не верифицирован
26 ноя 2025, 14:08
1b5084e
Код
Авторство
О чём код?
const img = new URL("./img.png", import.meta.url); it("should allow to create css modules", done => { import("./asyncChunk").then(({ default: x }) => { try { expect(img.toString()).toBe("https://test.cases/path/img.png"); expect(x.default.class).toEqual("test_module_css-class"); } catch (e) { return done(e); } done(); }, done); });