Skip to content
This repository has been archived by the owner on Jun 10, 2023. It is now read-only.

Commit

Permalink
Remove unnecessary console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
codyduong committed Mar 10, 2022
1 parent 10e279e commit 709a002
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/parsers/browsing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ export class Parser {
'video',
'station',
];
console.log(resultType);
const resultTypesLocal = [
_.t('artist'),
_.t('playlist'),
Expand Down
2 changes: 0 additions & 2 deletions tests/locale.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ describe.skip('Locales', () => {
//expect(artist[0]['category'].toLowerCase()).toBe(i18next.t('artist'));
//expect(song[0]['category'].toLowerCase()).toBe(i18next.t('song'));
expect(video[0]['category'].toLowerCase()).toBe(i18next.t('videos'));
console.log(i18next.t('videos'));
});
test.skip('fr', async () => {
await ytm.changeLanguage('fr');
Expand All @@ -55,7 +54,6 @@ describe.skip('Locales', () => {
expect(artist[0]['category'].toLowerCase()).toBe(i18next.t('artist'));
expect(song[0]['category'].toLowerCase()).toBe(i18next.t('song'));
expect(video[0]['category'].toLowerCase()).toBe(i18next.t('videos'));
console.log(song[0]['category'], video[0]['category']);
});
test.skip('ja', async () => {
await ytm.changeLanguage('ja');
Expand Down

0 comments on commit 709a002

Please sign in to comment.