import axios from "axios";

async function testGoogleCertAccess() {
  try {
    await axios.get("https://www.googleapis.com/oauth2/v3/certs");
    console.log("Google certs accessible ✅");
  } catch (err: any) {
    console.error("Cannot reach Google certs ❌", err.message);
  }
}

testGoogleCertAccess();
