/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/plugins/mini-css-extract-plugin/a.js
63 строки
1 KB
Tobias Koppers
update test case
04 ноя 2020, 15:40
04 ноя 2020, 15:40
2ca440d
Код
Авторство
О чём код?
import "./a.css"; const fs = __non_webpack_require__("fs"); const path = __non_webpack_require__("path"); it("a should load a chunk with css", () => { const linkStart = document.getElementsByTagName("link").length; const scriptStart = document.getElementsByTagName("script").length; const promise = import("./chunk"); const links = document.getElementsByTagName("link").slice(linkStart); const scripts = document.getElementsByTagName("script").slice(scriptStart); expect(links.length).toBe(1); expect(scripts.length).toBe(1); links[0].onload({ type: "load" }); __non_webpack_require__( scripts[0].src.replace("https://test.cases/path", ".") ); const css = fs .readFileSync( path.resolve( __dirname, links[0].href.replace("https://test.cases/path", ".") ), "utf-8" ) .trim(); expect(css).toMatchInlineSnapshot(` ".chunk { color: red; }" `); return promise; }); it("a should generate correct css", () => { const css = fs.readFileSync(path.resolve(__dirname, "a.css"), "utf-8").trim(); expect(css).toMatchInlineSnapshot(` ".dependency { color: red; } .a { color: red; }" `); }); it("c should generate correct css", () => { const css = fs.readFileSync(path.resolve(__dirname, "c.css"), "utf-8").trim(); expect(css).toMatchInlineSnapshot(` ".dependency { color: red; } .c { color: red; }" `); });