mirror of https://github.com/webpack/webpack.git
15 lines
299 B
JavaScript
15 lines
299 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
/**
|
|
* @param {import("../../../").MultiStats} stats stats
|
|
*/
|
|
validate(stats) {
|
|
for (let i = 0; i < stats.stats.length; i += 2) {
|
|
const a = stats.stats[i].compilation.hash;
|
|
const b = stats.stats[i + 1].compilation.hash;
|
|
expect(a).toBe(b);
|
|
}
|
|
}
|
|
};
|