webpack/test/configCases/web/fetch-priority-2/index.js

10 lines
243 B
JavaScript
Raw Normal View History

2023-04-23 08:36:14 +08:00
it("should set fetchPriority", () => {
// Single Chunk
import("./a");
import("./b");
expect(document.head._children).toHaveLength(2);
const script1 = document.head._children[1];
expect(script1._attributes.fetchpriority).toBe("low");
})