You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 24, 2025. It is now read-only.
["w/ unsupported OS it should return 'null'",["aix",undefined],(val)=>val===null],
67
+
["w/ unsupported OS it should return 'null'",["aix",undefined],null,null],
67
68
68
-
["w/ win32 and no APPDATA set it should return 'null'",["win32",undefined],(val)=>val===null],
69
+
["w/ win32 and no APPDATA set it should return 'null'",["win32",undefined],null,null],
69
70
70
-
["w/ win32 and set APPDATA it should return set 'APPDATA'",["win32","AppData"],(val)=>val==="AppData"],
71
+
["w/ win32 and set APPDATA it should return set 'APPDATA'",["win32","AppData"],"AppData",null],
71
72
72
-
["w/ linux it should return '/.local/share'",["linux",undefined],(val)=>val!==null&&val.endsWith("/.local/share")],
73
+
["w/ linux it should return '~/.local/share'",["linux",undefined],"/home/mock/.local/share","/home/mock"],
73
74
74
-
["w/ linux and wrongly set APPDATA it should ignore APPDATA and return /.local/share",["linux","FakeAppData"],(val)=>val!==null&&val.endsWith("/.local/share")],
75
+
["w/ linux and wrongly set APPDATA it should ignore APPDATA and return '~/.local/share'",["linux","FakeAppData"],"/home/mock/.local/share","/home/mock"],
75
76
76
-
["w/ darwin it should return /Library/Application Support",["darwin",undefined],(val)=>val!==null&&val.endsWith("/Library/Application Support")]
77
+
["w/ darwin it should return '~/Library/Application Support'",["darwin",undefined],"/Users/mock/Library/Application Support","/Users/mock"]
0 commit comments