UNPKG
theelitesubs
Version:
latest (1.0.0)
1.0.0
A simple wrapper to download subtitles from the yifysubtitles website.
theelitesubs
/
test
/
api-alive.js
9 lines
(6 loc)
•
197 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
test
from
'ava'
;
import
got
from
'got'
;
test
(
'http://yifysubtitles.com should be alive'
,
async
t => {
const
res =
await
got
(
'http://yifysubtitles.com'
); t.
is
(res.
statusCode
,
200
); });