fix(styles): emoji should be visible on safari #9452
Annotations
9 errors, 2 warnings, and 2 notices
projects/demo-playwright/tests/demo/demo.spec.ts#L35
1) [chromium] › tests/demo/demo.spec.ts:10:13 › Demo › /navigation/pagination ────────────────────
Error: Screenshot comparison failed:
208 pixels (ratio 0.01 of all image pixels) are different.
Expected: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/snapshots/tests/demo/demo.spec.ts-snapshots/navigation-pagination/1-chromium-linux.png
Received: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-demo-demo-Demo-navigation-pagination-chromium/navigation-pagination/1-actual.png
Diff: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-demo-demo-Demo-navigation-pagination-chromium/navigation-pagination/1-diff.png
Call log:
- page._expectScreenshot with timeout 5000ms
- verifying given screenshot expectation
- waiting for locator('tui-doc-example [automation-id="tui-doc-example"]').first()
- locator resolved to <div _ngcontent-tui-demo-c345="" automation-id="tui-d…>…</div>
- taking element screenshot
- disabled all CSS animations
- waiting for element to be visible and stable
- element is visible and stable
- 208 pixels (ratio 0.01 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for locator('tui-doc-example [automation-id="tui-doc-example"]').first()
- locator resolved to <div _ngcontent-tui-demo-c345="" automation-id="tui-d…>…</div>
- taking element screenshot
- disabled all CSS animations
- waiting for element to be visible and stable
- element is visible and stable
- captured a stable screenshot
- 208 pixels (ratio 0.01 of all image pixels) are different.
33 | }
34 |
> 35 | await expect(example).toHaveScreenshot([
| ^
36 | path.replace('/', '').replace(/\//g, '-'),
37 | `${i + 1}.png`,
38 | ]);
at /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests/demo/demo.spec.ts:35:39
|
projects/demo-playwright/tests/demo/demo.spec.ts#L35
1) [chromium] › tests/demo/demo.spec.ts:10:13 › Demo › /navigation/pagination ────────────────────
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Screenshot comparison failed:
208 pixels (ratio 0.01 of all image pixels) are different.
Expected: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/snapshots/tests/demo/demo.spec.ts-snapshots/navigation-pagination/1-chromium-linux.png
Received: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-demo-demo-Demo-navigation-pagination-chromium-retry1/navigation-pagination/1-actual.png
Diff: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-demo-demo-Demo-navigation-pagination-chromium-retry1/navigation-pagination/1-diff.png
Call log:
- page._expectScreenshot with timeout 5000ms
- verifying given screenshot expectation
- waiting for locator('tui-doc-example [automation-id="tui-doc-example"]').first()
- locator resolved to <div _ngcontent-tui-demo-c345="" automation-id="tui-d…>…</div>
- taking element screenshot
- disabled all CSS animations
- waiting for element to be visible and stable
- element is visible and stable
- 208 pixels (ratio 0.01 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for locator('tui-doc-example [automation-id="tui-doc-example"]').first()
- locator resolved to <div _ngcontent-tui-demo-c345="" automation-id="tui-d…>…</div>
- taking element screenshot
- disabled all CSS animations
- waiting for element to be visible and stable
- element is visible and stable
- captured a stable screenshot
- 208 pixels (ratio 0.01 of all image pixels) are different.
33 | }
34 |
> 35 | await expect(example).toHaveScreenshot([
| ^
36 | path.replace('/', '').replace(/\//g, '-'),
37 | `${i + 1}.png`,
38 | ]);
at /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests/demo/demo.spec.ts:35:39
|
projects/demo-playwright/tests/kit/input-date-range/input-date-range.spec.ts#L48
2) [chromium] › tests/kit/input-date-range/input-date-range.spec.ts:31:17 › InputDateRange › API › correct filler display for size S
Error: Screenshot comparison failed:
171 pixels (ratio 0.01 of all image pixels) are different.
Expected: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/snapshots/tests/kit/input-date-range/input-date-range.spec.ts-snapshots/02-textfield-size-s-set-day-chromium-linux.png
Received: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-kit-input-date-range-input-date-range-InputDateRange-API-correct-filler-display-for-size-S-chromium/02-textfield-size-s-set-day-actual.png
Diff: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-kit-input-date-range-input-date-range-InputDateRange-API-correct-filler-display-for-size-S-chromium/02-textfield-size-s-set-day-diff.png
Call log:
- page._expectScreenshot with timeout 5000ms
- verifying given screenshot expectation
- waiting for locator('#demo-content').locator('tui-input-date-range').getByRole('textbox')
- locator resolved to <input tabindex="0" placeholder="" tuimaskaccessor="" a…/>
- taking element screenshot
- disabled all CSS animations
- waiting for element to be visible and stable
- element is visible and stable
- 171 pixels (ratio 0.01 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for locator('#demo-content').locator('tui-input-date-range').getByRole('textbox')
- locator resolved to <input tabindex="0" placeholder="" tuimaskaccessor="" a…/>
- taking element screenshot
- disabled all CSS animations
- waiting for element to be visible and stable
- element is visible and stable
- captured a stable screenshot
- 171 pixels (ratio 0.01 of all image pixels) are different.
46 |
47 | await inputDateRange.textfield.type('01');
> 48 | await expect(inputDateRange.textfield).toHaveScreenshot(
| ^
49 | `02-textfield-size-${size}-set-day.png`,
50 | );
51 | await expect(inputDateRange.calendarRange).toHaveScreenshot(
at /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests/kit/input-date-range/input-date-range.spec.ts:48:56
|
projects/demo-playwright/tests/kit/input-date-range/input-date-range.spec.ts#L48
2) [chromium] › tests/kit/input-date-range/input-date-range.spec.ts:31:17 › InputDateRange › API › correct filler display for size S
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Screenshot comparison failed:
171 pixels (ratio 0.01 of all image pixels) are different.
Expected: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/snapshots/tests/kit/input-date-range/input-date-range.spec.ts-snapshots/02-textfield-size-s-set-day-chromium-linux.png
Received: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-kit-input-date-range-input-date-range-InputDateRange-API-correct-filler-display-for-size-S-chromium-retry1/02-textfield-size-s-set-day-actual.png
Diff: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-kit-input-date-range-input-date-range-InputDateRange-API-correct-filler-display-for-size-S-chromium-retry1/02-textfield-size-s-set-day-diff.png
Call log:
- page._expectScreenshot with timeout 5000ms
- verifying given screenshot expectation
- waiting for locator('#demo-content').locator('tui-input-date-range').getByRole('textbox')
- locator resolved to <input tabindex="0" placeholder="" tuimaskaccessor="" a…/>
- taking element screenshot
- disabled all CSS animations
- waiting for element to be visible and stable
- element is visible and stable
- 171 pixels (ratio 0.01 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for locator('#demo-content').locator('tui-input-date-range').getByRole('textbox')
- locator resolved to <input tabindex="0" placeholder="" tuimaskaccessor="" a…/>
- taking element screenshot
- disabled all CSS animations
- waiting for element to be visible and stable
- element is visible and stable
- captured a stable screenshot
- 171 pixels (ratio 0.01 of all image pixels) are different.
46 |
47 | await inputDateRange.textfield.type('01');
> 48 | await expect(inputDateRange.textfield).toHaveScreenshot(
| ^
49 | `02-textfield-size-${size}-set-day.png`,
50 | );
51 | await expect(inputDateRange.calendarRange).toHaveScreenshot(
at /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests/kit/input-date-range/input-date-range.spec.ts:48:56
|
projects/demo-playwright/tests/kit/input-date-range/input-date-range.spec.ts#L48
3) [chromium] › tests/kit/input-date-range/input-date-range.spec.ts:31:17 › InputDateRange › API › correct filler display for size M
Error: Screenshot comparison failed:
171 pixels (ratio 0.01 of all image pixels) are different.
Expected: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/snapshots/tests/kit/input-date-range/input-date-range.spec.ts-snapshots/02-textfield-size-m-set-day-chromium-linux.png
Received: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-kit-input-date-range-input-date-range-InputDateRange-API-correct-filler-display-for-size-M-chromium/02-textfield-size-m-set-day-actual.png
Diff: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-kit-input-date-range-input-date-range-InputDateRange-API-correct-filler-display-for-size-M-chromium/02-textfield-size-m-set-day-diff.png
Call log:
- page._expectScreenshot with timeout 5000ms
- verifying given screenshot expectation
- waiting for locator('#demo-content').locator('tui-input-date-range').getByRole('textbox')
- locator resolved to <input tabindex="0" placeholder="" tuimaskaccessor="" a…/>
- taking element screenshot
- disabled all CSS animations
- waiting for element to be visible and stable
- element is visible and stable
- 171 pixels (ratio 0.01 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for locator('#demo-content').locator('tui-input-date-range').getByRole('textbox')
- locator resolved to <input tabindex="0" placeholder="" tuimaskaccessor="" a…/>
- taking element screenshot
- disabled all CSS animations
- waiting for element to be visible and stable
- element is visible and stable
- captured a stable screenshot
- 171 pixels (ratio 0.01 of all image pixels) are different.
46 |
47 | await inputDateRange.textfield.type('01');
> 48 | await expect(inputDateRange.textfield).toHaveScreenshot(
| ^
49 | `02-textfield-size-${size}-set-day.png`,
50 | );
51 | await expect(inputDateRange.calendarRange).toHaveScreenshot(
at /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests/kit/input-date-range/input-date-range.spec.ts:48:56
|
projects/demo-playwright/tests/kit/input-date-range/input-date-range.spec.ts#L48
3) [chromium] › tests/kit/input-date-range/input-date-range.spec.ts:31:17 › InputDateRange › API › correct filler display for size M
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Screenshot comparison failed:
171 pixels (ratio 0.01 of all image pixels) are different.
Expected: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/snapshots/tests/kit/input-date-range/input-date-range.spec.ts-snapshots/02-textfield-size-m-set-day-chromium-linux.png
Received: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-kit-input-date-range-input-date-range-InputDateRange-API-correct-filler-display-for-size-M-chromium-retry1/02-textfield-size-m-set-day-actual.png
Diff: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-kit-input-date-range-input-date-range-InputDateRange-API-correct-filler-display-for-size-M-chromium-retry1/02-textfield-size-m-set-day-diff.png
Call log:
- page._expectScreenshot with timeout 5000ms
- verifying given screenshot expectation
- waiting for locator('#demo-content').locator('tui-input-date-range').getByRole('textbox')
- locator resolved to <input tabindex="0" placeholder="" tuimaskaccessor="" a…/>
- taking element screenshot
- disabled all CSS animations
- waiting for element to be visible and stable
- element is visible and stable
- 171 pixels (ratio 0.01 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for locator('#demo-content').locator('tui-input-date-range').getByRole('textbox')
- locator resolved to <input tabindex="0" placeholder="" tuimaskaccessor="" a…/>
- taking element screenshot
- disabled all CSS animations
- waiting for element to be visible and stable
- element is visible and stable
- captured a stable screenshot
- 171 pixels (ratio 0.01 of all image pixels) are different.
46 |
47 | await inputDateRange.textfield.type('01');
> 48 | await expect(inputDateRange.textfield).toHaveScreenshot(
| ^
49 | `02-textfield-size-${size}-set-day.png`,
50 | );
51 | await expect(inputDateRange.calendarRange).toHaveScreenshot(
at /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests/kit/input-date-range/input-date-range.spec.ts:48:56
|
projects/demo-playwright/tests/kit/input-date-range/input-date-range.spec.ts#L159
4) [chromium] › tests/kit/input-date-range/input-date-range.spec.ts:139:13 › InputDateRange › API › Select from [items] => select date range from calendar
Error: Screenshot comparison failed:
588 pixels (ratio 0.01 of all image pixels) are different.
Expected: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/snapshots/tests/kit/input-date-range/input-date-range.spec.ts-snapshots/07-item-and-calendar-interactions-chromium-linux.png
Received: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-kit-input-date-range-input-date-range-In-33f60-lect-from-items-select-date-range-from-calendar-chromium/07-item-and-calendar-interactions-actual.png
Diff: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-kit-input-date-range-input-date-range-In-33f60-lect-from-items-select-date-range-from-calendar-chromium/07-item-and-calendar-interactions-diff.png
Call log:
- page._expectScreenshot with timeout 5000ms
- verifying given screenshot expectation
- waiting for locator('#demo-content')
- locator resolved to <div id="demo-content" class="t-content" _ngcontent-t…>…</div>
- taking element screenshot
- disabled all CSS animations
- waiting for element to be visible and stable
- element is visible and stable
- 588 pixels (ratio 0.01 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for locator('#demo-content')
- locator resolved to <div id="demo-content" class="t-content" _ngcontent-t…>…</div>
- taking element screenshot
- disabled all CSS animations
- waiting for element to be visible and stable
- element is visible and stable
- captured a stable screenshot
- 588 pixels (ratio 0.01 of all image pixels) are different.
157 | `21.09.2020${CHAR_NO_BREAK_SPACE}–${CHAR_NO_BREAK_SPACE}25.09.2020`,
158 | );
> 159 | await expect(example).toHaveScreenshot(
| ^
160 | '07-item-and-calendar-interactions.png',
161 | );
162 | });
at /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests/kit/input-date-range/input-date-range.spec.ts:159:35
|
projects/demo-playwright/tests/kit/input-date-range/input-date-range.spec.ts#L159
4) [chromium] › tests/kit/input-date-range/input-date-range.spec.ts:139:13 › InputDateRange › API › Select from [items] => select date range from calendar
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Screenshot comparison failed:
588 pixels (ratio 0.01 of all image pixels) are different.
Expected: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/snapshots/tests/kit/input-date-range/input-date-range.spec.ts-snapshots/07-item-and-calendar-interactions-chromium-linux.png
Received: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-kit-input-date-range-input-date-range-In-33f60-lect-from-items-select-date-range-from-calendar-chromium-retry1/07-item-and-calendar-interactions-actual.png
Diff: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-kit-input-date-range-input-date-range-In-33f60-lect-from-items-select-date-range-from-calendar-chromium-retry1/07-item-and-calendar-interactions-diff.png
Call log:
- page._expectScreenshot with timeout 5000ms
- verifying given screenshot expectation
- waiting for locator('#demo-content')
- locator resolved to <div id="demo-content" class="t-content" _ngcontent-t…>…</div>
- taking element screenshot
- disabled all CSS animations
- waiting for element to be visible and stable
- element is visible and stable
- 588 pixels (ratio 0.01 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for locator('#demo-content')
- locator resolved to <div id="demo-content" class="t-content" _ngcontent-t…>…</div>
- taking element screenshot
- disabled all CSS animations
- waiting for element to be visible and stable
- element is visible and stable
- captured a stable screenshot
- 588 pixels (ratio 0.01 of all image pixels) are different.
157 | `21.09.2020${CHAR_NO_BREAK_SPACE}–${CHAR_NO_BREAK_SPACE}25.09.2020`,
158 | );
> 159 | await expect(example).toHaveScreenshot(
| ^
160 | '07-item-and-calendar-interactions.png',
161 | );
162 | });
at /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests/kit/input-date-range/input-date-range.spec.ts:159:35
|
|
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/[email protected], actions/cache/[email protected], actions/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
The following artifacts were uploaded using a version of actions/upload-artifact that is scheduled for deprecation: "cypress-e2e-artifacts--0e5ddb2789a6994cbdbe4a2a9284ed4d41c20687-9756794572-8003", "playwright-e2e-artifacts--0e5ddb2789a6994cbdbe4a2a9284ed4d41c20687-9756794572-8003".
Please update your workflow to use v4 of the artifact actions.
Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
|
4 failed
[chromium] › tests/demo/demo.spec.ts:10:13 › Demo › /navigation/pagination ─────────────────────
[chromium] › tests/kit/input-date-range/input-date-range.spec.ts:31:17 › InputDateRange › API › correct filler display for size S
[chromium] › tests/kit/input-date-range/input-date-range.spec.ts:31:17 › InputDateRange › API › correct filler display for size M
[chromium] › tests/kit/input-date-range/input-date-range.spec.ts:139:13 › InputDateRange › API › Select from [items] => select date range from calendar
88 passed (1.4m)
|
|
This job succeeded
Loading