vikejs / bati

Next-gen scaffolder. Get started with fully-functional apps, and choose any tool you want.
https://batijs.dev
MIT License
258 stars 14 forks source link

feat: BATI_TEST #330

Closed magne4000 closed 2 months ago

magne4000 commented 2 months ago

BATI_TEST global is true only when running e2e tests, false otherwise.

// Works like `BATI.has`, directly in typescript or within comments
if (BATI_TEST) {
  console.log("TEST only");
}

//# BATI_TEST
console.log("TEST only");