webpack/test/configCases/asset-modules/real-content-hash/index.js

7 lines
160 B
JavaScript

import a from "../_images/file.png";
import b from "../_images/file_copy.png";
it("should use a real content hash for assets", () => {
expect(a).toBe(b);
});