File tree Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,6 @@ class Updates {
87
87
88
88
const assetPlatform = fileName => {
89
89
if ( / .* ( m a c | d a r w i n ) .* \. z i p / . test ( fileName ) ) return 'darwin'
90
- if ( / \. A p p I m a g e $ / . test ( fileName ) ) return 'appimage'
91
90
if ( / \. e x e $ / . test ( fileName ) ) return 'win32'
92
91
return false
93
92
}
Original file line number Diff line number Diff line change @@ -76,13 +76,6 @@ test('Updates', async t => {
76
76
t . match ( body . url , / - d a r w i n \. z i p $ / )
77
77
} )
78
78
79
- await t . test ( 'AppImage' , async t => {
80
- let res = await fetch ( `${ address } /zeit/hyper/appimage/0.0.0` )
81
- t . equal ( res . status , 200 )
82
- let body = await res . json ( )
83
- t . match ( body . url , / \. A p p I m a g e $ / )
84
- } )
85
-
86
79
await t . test ( 'Win32' , async t => {
87
80
let res = await fetch ( `${ address } /zeit/hyper/win32/0.0.0` )
88
81
t . equal ( res . status , 200 )
You can’t perform that action at this time.
0 commit comments