Skip to content

Commit

Permalink
chore: fix ci (#344)
Browse files Browse the repository at this point in the history
  • Loading branch information
toomuchdesign authored Jul 26, 2024
1 parent 7b351b7 commit 66f4afb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jest/__tests__/__snapshots__/bundles-snapshot.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ exports[`Dist bundle is unchanged 1`] = `
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (e.indexOf(n) >= 0) continue;
if (e.includes(n)) continue;
t[n] = r[n];
}
return t;
Expand Down

0 comments on commit 66f4afb

Please sign in to comment.