palladians / pallad

Found shorthand type coercions JS-0066
Anti-pattern
Minor
a month ago2 months old
use Boolean(process.env.CI) instead
 8export default defineConfig({
 9  testDir: "./e2e",
10  fullyParallel: true,
11  forbidOnly: !!process.env.CI,12  retries: process.env.CI ? 2 : 0,
13  workers: process.env.CI ? 1 : undefined,
14  reporter: "html",