diff options
| author | realS1ant <45408404+realS1ant@users.noreply.github.com> | 2021-04-11 02:52:00 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-11 02:52:00 -0500 |
| commit | 14198b83d6fdab123873744f7056eb9ecfd783e5 (patch) | |
| tree | e0cf5ccc3ae18e4f4e7cf78fa0ecfa7496f2a835 /src/test.js | |
| parent | db9c2b888dae53a16f371fe9425e7621fb2ed004 (diff) | |
| parent | 1a75774bd8b43d76a1cc9fb07817f39df849001b (diff) | |
| download | StreamFinder-14198b83d6fdab123873744f7056eb9ecfd783e5.tar.xz StreamFinder-14198b83d6fdab123873744f7056eb9ecfd783e5.zip | |
Merge pull request #6 from FivePixels/backend-api
Cors headers
Diffstat (limited to 'src/test.js')
| -rw-r--r-- | src/test.js | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/test.js b/src/test.js index 6c10475..abfe9b0 100644 --- a/src/test.js +++ b/src/test.js @@ -2,4 +2,16 @@ const check = require('./check') check.performCheck('387', 'Spongebob Squarepants', 'tv').then(res => { console.log(res) -})
\ No newline at end of file +}) +check.performCheck('298618', 'The%20Flash', 'tv').then(res => { + console.log(res) +}) +check.performCheck('298618', 'The Flash', 'tv').then(res => { + console.log(res) +}) +check.performCheck('4607', 'Lost', 'tv').then(res => { + console.log(res) +}) +check.performCheck('632357', 'The Unholy', 'movie').then(res => { + console.log(res) +}) |
