Skip to content

Commit

Permalink
cambio path de variables de entorno
Browse files Browse the repository at this point in the history
  • Loading branch information
juanmera01 committed May 4, 2022
1 parent f5b68f9 commit 33d5370
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion webapp/e2e/steps/login.steps.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import path, { normalize } from 'path';

var dotenvPath = path.resolve('./../../../webapp/.env');
var dotenvPath = path.resolve('../../.env');
require("dotenv").config({path: dotenvPath});

import { defineFeature, loadFeature } from 'jest-cucumber';
Expand Down
2 changes: 1 addition & 1 deletion webapp/e2e/steps/logout.steps.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import path, { normalize } from 'path';

var dotenvPath = path.resolve('../.env');
var dotenvPath = path.resolve('../../.env');

require("dotenv").config({path: dotenvPath});

Expand Down
2 changes: 1 addition & 1 deletion webapp/e2e/steps/register.steps.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import path, { normalize } from 'path';

var dotenvPath = path.resolve('../.env');
var dotenvPath = path.resolve('../../.env');
require("dotenv").config({path: dotenvPath});

const crypto = require('crypto');
Expand Down

0 comments on commit 33d5370

Please sign in to comment.