// Plugins enable you to tap into, modify, or extend the internal behavior of Cypress
// For more info, visit https://on.cypress.io/plugins-api
import {environment} from "../../src/environments/environment";
import user from './.env';
export default (on: any, config: any) => {
    config.env.cognito_username = user.username;
    config.env.cognito_password = user.password;
    config.env.awsConfig = environment.auth;
    return config;

}
