Skip to content

Commit

Permalink
fix: dotenv safe lefotver
Browse files Browse the repository at this point in the history
  • Loading branch information
markin-io committed Sep 29, 2023
1 parent 372ee02 commit 9533794
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/js-dash-sdk/karma/karma.functional.conf.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const dotenvResult = require('dotenv-safe').config();
const dotenvResult = require('dotenv').config();
const options = require('./options');

if (dotenvResult.error) {
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet-lib/karma/karma.functional.conf.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable import/no-extraneous-dependencies */
const dotenvResult = require('dotenv-safe').config();
const dotenvResult = require('dotenv').config();
const options = require('./options');

if (dotenvResult.error) {
Expand Down

0 comments on commit 9533794

Please sign in to comment.