Skip to content

Commit 2f3dc51

Browse files
committed
chore: attempts to fix env variable issue
Signed-off-by: Anthony D. Mays <[email protected]>
1 parent edaff2a commit 2f3dc51

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lib/javascript/fullstack_demo/cypress.config.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ export default defineConfig({
1414
screenshotsFolder: './cypress/snapshots/actual',
1515
setupNodeEvents(on, config) {
1616
configureVisualRegression(on);
17+
config.env = {
18+
...process.env,
19+
...config.env,
20+
};
21+
return config;
1722
},
1823
},
1924
});

0 commit comments

Comments
 (0)