Skip to content

Commit

Permalink
fix fetchListTweets test
Browse files Browse the repository at this point in the history
  • Loading branch information
MicrowaveDev authored and karashiiro committed Dec 23, 2023
1 parent 6cc1c5b commit ef25f2d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/tweets.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ test('scraper can get tweets without logging in', async () => {
expect(counter).toBeGreaterThanOrEqual(1);
});

test.only('scraper can get tweets without logging in', async () => {
test('scraper can get tweets from list', async () => {
const scraper = await getScraper();

let cursor: string | undefined = undefined;
Expand All @@ -64,7 +64,6 @@ test.only('scraper can get tweets without logging in', async () => {
maxTweets,
cursor,
);
console.log('res', res);

expect(res.next).toBeTruthy();

Expand Down

0 comments on commit ef25f2d

Please sign in to comment.