/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/css/basic/index.js
14 строк
499 B
hai-x
fix(css): avoid extra `module.export` output for css module (#19265)
06 апр 2025, 15:53
Не верифицирован
06 апр 2025, 15:53
e0891ee
Код
Авторство
О чём код?
import * as style from "./style.css"; it("should compile and load style on demand", done => { expect(style).toEqual({}); import("./style2.css").then(x => { expect(x).toEqual({}); const style = getComputedStyle(document.body); expect(style.getPropertyValue("background")).toBe(" red"); expect(style.getPropertyValue("margin")).toBe(" 10px"); expect(style.getPropertyValue("color")).toBe(" green"); expect(style.getPropertyValue("padding")).toBe(" 20px 10px"); done(); }, done); });