Skip to content

Commit

Permalink
fixing issue with env
Browse files Browse the repository at this point in the history
  • Loading branch information
codyseibert committed Jun 28, 2023
1 parent 7666ef2 commit b79465b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ import { waitForElasticsearch } from '../support/helpers';

const DEFAULT_ACCOUNT_PASS = Cypress.env('DEFAULT_ACCOUNT_PASS');

console.log('gg', DEFAULT_ACCOUNT_PASS);

faker.seed(faker.number.int());

let docketClerkToken = null;
Expand Down
7 changes: 1 addition & 6 deletions cypress/cypress-smoketests/support/login.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,7 @@ AWS.config.credentials = {
};
AWS.config.region = awsRegion;

console.log(process.env.CYPRESS_AWS_ACCESS_KEY_ID);
console.log(process.env.CYPRESS_ENV);
console.log(process.env.CYPRESS_DEPLOYING_COLOR);
console.log(process.env.CYPRESS_DEFAULT_ACCOUNT_PASS);

const ENV = process.env.CYPRESS_ENV;
const { ENV } = process.env;
const DEPLOYING_COLOR = process.env.CYPRESS_DEPLOYING_COLOR;
const DEFAULT_ACCOUNT_PASS = process.env.CYPRESS_DEFAULT_ACCOUNT_PASS;

Expand Down

0 comments on commit b79465b

Please sign in to comment.