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

chore(demo-playwright): test for landing page #6143

Merged
merged 20 commits into from
Dec 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
5230106
Adding a playwright test for line-chart (#1)
VidhiRambhia Oct 9, 2023
d3029e2
Merge branch 'taiga-family:main' into main
VidhiRambhia Oct 9, 2023
c4d5c91
chore(demo-playwright): addressing comments and deleting line chart c…
VidhiRambhia Oct 10, 2023
64857de
Merge branch 'taiga-family:main' into main
VidhiRambhia Oct 10, 2023
26301ad
chore(demo-playwright): changing lineChart to chartColumn
VidhiRambhia Oct 10, 2023
69466cb
Merge remote-tracking branch 'origin/main'
VidhiRambhia Oct 10, 2023
699eb1e
chore(demo-playwright): test for `table-bars-service` (#9)
AtharvChandratre Oct 25, 2023
92ee880
chore(demo-playwright): mobile-calendar.spec.ts
AtharvChandratre Nov 19, 2023
cfa012c
Playwright button (#15)
AtharvChandratre Nov 19, 2023
d801711
chore(demo-playwright): button.spec.ts
AtharvChandratre Nov 20, 2023
d1fa74f
Merge branch 'main' into main
AtharvChandratre Nov 20, 2023
aca4603
Merge branch 'taiga-family:main' into main
AtharvChandratre Nov 21, 2023
175fd35
Merge branch 'taiga-family:main' into main
AtharvChandratre Nov 23, 2023
0184c3e
Merge remote-tracking branch 'origin/main'
VidhiRambhia Nov 23, 2023
99e7013
Merge branch 'taiga-family:main' into main
VidhiRambhia Nov 25, 2023
42777c7
Merge remote-tracking branch 'origin/main'
VidhiRambhia Nov 25, 2023
6452114
Merge branch 'taiga-family:main' into main
AtharvChandratre Nov 29, 2023
2542e55
Merge remote-tracking branch 'origin/main'
VidhiRambhia Dec 3, 2023
424e980
chore(demo-playwright): test for landing page
VidhiRambhia Dec 3, 2023
f8c0119
Merge branch 'main' into landing
VidhiRambhia Dec 3, 2023
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
6 changes: 0 additions & 6 deletions projects/demo-cypress/cypress/tests/demo/landing.cy.ts

This file was deleted.

13 changes: 13 additions & 0 deletions projects/demo-playwright/tests/demo/landing.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import {tuiGoto} from '@demo-playwright/utils';
import {expect, test} from '@playwright/test';

test.describe(`Landing`, () => {
test.use({
viewport: {width: 360, height: 740},
});

test(`take snapshot`, async ({page}) => {
await tuiGoto(page, `/`, {hideHeader: false});
await expect(page).toHaveScreenshot(`landing-360-740.png`);
});
});
Loading