Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
don't fail test, emit a warning instead
  • Loading branch information
Amxx committed Mar 13, 2024
commit 50e1e1f095a673c53ed7a7626163639ea383412a
2 changes: 1 addition & 1 deletion scripts/checks/compareGasReports.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class Report {
// Compare two reports
static compare(update, ref, opts = { hideEqual: true, strictTesting: false }) {
if (JSON.stringify(update.config.metadata) !== JSON.stringify(ref.config.metadata)) {
throw new Error('Reports produced with non matching metadata');
console.warn('WARNING: Reports produced with non matching metadata');
}

const deployments = update.info.deployments
Expand Down