Skip to content

Commit c74e404

Browse files
committed
Don't return
1 parent 2893cd4 commit c74e404

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

package/utils/helpers.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ const chdirTestApp = () => {
3333

3434
const chdirCwd = () => process.chdir(process.cwd())
3535

36-
const resetEnv = () => (process.env = {})
36+
const resetEnv = () => {
37+
process.env = {}
38+
}
3739

3840
const ensureTrailingSlash = path => (path.endsWith('/') ? path : `${path}/`)
3941

0 commit comments

Comments
 (0)