Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: speed up #30

Merged
merged 1 commit into from
Jan 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
193 changes: 150 additions & 43 deletions e2e/__snapshots__/scrappers.test.ts.snap

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion e2e/scrappers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ describe('RowsX - scrappers tests', () => {
await appPage.bringToFront();
await appPage.goto(spec.url, { waitUntil: 'domcontentloaded' });
await extensionPage.goto(extensionUrl, { waitUntil: 'domcontentloaded' });
await appPage.waitForTimeout(250);
await appPage.waitForTimeout(200);
await extensionPage.bringToFront();
const button = await extensionPage.waitForSelector('.copy-btn');
await button.click();
Expand Down
677 changes: 1 addition & 676 deletions e2e/tik-tok-user/index.html

Large diffs are not rendered by default.

668 changes: 1 addition & 667 deletions e2e/tik-tok-videos/index.html

Large diffs are not rendered by default.

550 changes: 1 addition & 549 deletions e2e/twitter/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test:e2e": "tsc && vite build --mode=e2e && jest --max-workers=1 --detectOpenHandles",
"test:e2e": "tsc && vite build --mode=e2e && jest --detectOpenHandles",
"preview": "vite preview",
"lint": "eslint src -c ./.eslintrc.cjs --ext .jsx,.js,.ts,.tsx",
"check-types": "tsc --noEmit"
Expand Down