/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/plugins/virtual-url-plugin/index.js
63 строки
2 KB
Xiao
feat: add the `context` option support for VirtualUrlPlugin (#20449)
12 мар 2026, 21:47
Не верифицирован
12 мар 2026, 21:47
214f361
Код
Авторство
О чём код?
import { routes } from "virtual:routes" import { app } from "virtual:app" import json from "virtual:config" import { ts } from "virtual:ts" import txt from "virtual:txt" import { hello } from 'virtual:hello.ts'; import Hammer from 'virtual:hammer.svg'; import { button } from 'virtual:src/components/button.js'; import { table } from 'virtual:src/components/table.js'; import { icon } from 'virtual:src/components/icon.js'; it("should correctly load virtual modules with the js type.", (done) => { expect(typeof routes.bar).toBe("function"); expect(typeof routes.foo).toBe("function"); expect(app).toBe("app"); Promise.all([ routes.bar(), routes.foo() ]).then(([{bar}, {foo}]) => { expect(bar).toBe("bar"); expect(foo).toBe("foo"); done(); }).catch(done); }); it("should correctly load virtual modules with the json type.", (done) => { expect(json.name).toBe("virtual-url-plugin"); done() }); it("should correctly load virtual modules with the css type.", (done) => { import("virtual:style").then(() => done()).catch(done) }); it("should correctly load virtual modules with the asset/source type.", (done) => { expect(txt).toBe("Hello world"); done(); }); it("should correctly load virtual modules without explicit type when virtual id has file extension.", (done) => { expect(hello).toBe("hello"); done(); }); it("should correctly load virtual modules with custom loader.", (done) => { expect(ts).toBe("var"); done() }); it("should correctly load virtual modules with the asset/resource type.", (done) => { const fs = __non_webpack_require__("fs"); // windows doesn't allow : in file names expect(Hammer).not.toContain(":"); expect(fs.readFileSync(__dirname + "/" + Hammer, "utf-8")).toContain("</svg>"); done(); }); it("should correctly load virtual modules with the js type and custom loader.", (done) => { expect(button).toBe("button"); expect(table).toBe("table"); expect(icon).toBe("icon"); done(); });