UNPKG

theelitesubs

Version:

A simple wrapper to download subtitles from the yifysubtitles website.

9 lines (6 loc) 197 B
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); });