ci-config.js 229 B

12345678910111213
  1. process.env.CI = true;
  2. const warn = console.warn;
  3. console.warn = function (x) {
  4. if (
  5. x !==
  6. "bigint: Failed to load bindings, pure JS will be used (try npm run rebuild?)"
  7. ) {
  8. warn(x);
  9. }
  10. };
  11. module.exports = {};