mirror of https://github.com/webpack/webpack.git
9 lines
247 B
JavaScript
9 lines
247 B
JavaScript
|
const urlSvg = new URL(
|
||
|
"https://raw.githubusercontent.com/webpack/webpack/refs/heads/main/test/configCases/asset-modules/_images/file.svg",
|
||
|
import.meta.url
|
||
|
);
|
||
|
|
||
|
it("should work", () => {
|
||
|
expect(/[\da-f]{20}\.svg$/.test(urlSvg)).toBe(true);
|
||
|
});
|