Skip to content

Commit

Permalink
renaming const
Browse files Browse the repository at this point in the history
  • Loading branch information
swatinigam committed Dec 16, 2024
1 parent 8307d17 commit 70c833f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ const allureWriter = require('@shelex/cypress-allure-plugin/writer');
const webpack = require('@cypress/webpack-preprocessor');

const DEV = 'DEV';
const qa = 'qa';
const prod = 'prod';
const currentEnv = qa;
const QA = 'qa';
const PROD = 'prod';
const currentEnv = QA;

const envs = {
currentEnv,
DEV,
qa,
prod,
QA,
PROD,
};

/**
Expand Down

0 comments on commit 70c833f

Please sign in to comment.