-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.ts
22 lines (19 loc) · 869 Bytes
/
test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// TODO: Delete this file once we have actual tests
import { google } from 'googleapis';
import { albumSearch } from '.';
import dotenv from 'dotenv';
dotenv.config();
(async () => {
const youtube = google.youtube({
version: 'v3',
auth: process.env.YOUTUBE_API_KEY,
});
// console.log(await albumSearch('converge jane doe', youtube));
// console.log(await albumSearch('five star hotel gray data', youtube));
console.log(await albumSearch('five star hotel grey data', youtube));
// console.log(await albumSearch('black sabbath black sabbath', youtube));
// console.log(await albumSearch('iron maiden iron maiden', youtube));
// console.log(await albumSearch('megadeth peace sells', youtube));
// console.log(await albumSearch("megadeth peace sells... but who's buying?", youtube));
// console.log(await albumSearch('nirvana nevermind', youtube));
})();