We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05475fc commit 7ffd448Copy full SHA for 7ffd448
tests/utils/env.cjs
@@ -0,0 +1,11 @@
1
+'use strict';
2
+require('dotenv').config();
3
+
4
+/**
5
+ * Retrieves the environment variables used in tests.
6
+ */
7
+const env = {
8
+ conduitAPI: process.env.CONDUIT_API,
9
+};
10
11
+module.exports = { env };
0 commit comments