Skip to content

Commit

Permalink
chore: Update Cypress configuration to use process environment variab…
Browse files Browse the repository at this point in the history
…les instead of import.meta.env
  • Loading branch information
lokeshwar777 committed Jun 8, 2024
1 parent 9049aa2 commit c2ad64f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default defineConfig({
baseUrl: "http://localhost:5173",
testIsolation: false
},
projectId: import.meta.env.CYPRESS_PROJECT_ID,
projectId: process.env.CYPRESS_PROJECT_ID,
record: true, // Enable test recording
key: import.meta.env.CYPRESS_RECORD_KEY // Cypress record key
key: process.env.CYPRESS_RECORD_KEY // Cypress record key
});

0 comments on commit c2ad64f

Please sign in to comment.