webpack/test/configCases/asset-url/target-webworker1/index.js

6 lines
172 B
JavaScript
Raw Normal View History

2020-08-05 05:42:29 +08:00
it("should handle import.meta.url in URL()", () => {
const {href} = new URL("./index.css", import.meta.url);
expect(href).toBe("https://test.cases/path/index.css");
});