-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: add visual regression testing based on playwright (#33)
- Loading branch information
1 parent
dcd7d31
commit 60d826f
Showing
663 changed files
with
434 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,3 +36,6 @@ test-results | |
playwright-report | ||
|
||
icons/ | ||
/test-results/ | ||
/playwright-report/ | ||
/playwright/.cache/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
registry = "https://registry.npmjs.org" | ||
registry = "https://registry.npmjs.org" | ||
@siemens:registry=https://registry.npmjs.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
* SPDX-FileCopyrightText: 2023 Siemens AG | ||
* | ||
* SPDX-License-Identifier: MIT | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
import { ConsoleMessage, expect, test } from '@playwright/test'; | ||
import * as iconsFile from './../dist/sample.json'; | ||
import * as icons from './../icons'; | ||
|
||
import { reservedKeywords } from './../scripts/reserved-keywords'; | ||
|
||
function toCamel(snakeCaseString: string): string { | ||
const words = snakeCaseString.split('-'); | ||
const camelCaseString = | ||
words[0] + | ||
words | ||
.slice(1) | ||
.map(word => word.charAt(0).toUpperCase() + word.slice(1)) | ||
.join(''); | ||
return camelCaseString; | ||
} | ||
|
||
iconsFile.icons | ||
.map(iconName => { | ||
if (reservedKeywords.has(iconName)) { | ||
return { | ||
iconName: iconName, | ||
esImportName: `_${iconName}`, | ||
}; | ||
} | ||
|
||
return { | ||
iconName: iconName, | ||
esImportName: iconName, | ||
}; | ||
}) | ||
.forEach(({ iconName, esImportName }) => { | ||
test(`should show ${iconName}`, async ({ page }) => { | ||
const dataUrlSvg = icons[toCamel(esImportName)]; | ||
await page.goto(`http://127.0.0.1:8080/e2e/icon-by-name.html?icon=${iconName}`); | ||
|
||
await page.evaluate( | ||
([url]) => { | ||
(window as any).__SVG_DATA__ = url; | ||
}, | ||
[dataUrlSvg], | ||
); | ||
|
||
await page.waitForEvent('console', { | ||
predicate: (message: ConsoleMessage) => { | ||
return message.text() === 'icon-loaded-success'; | ||
}, | ||
}); | ||
|
||
expect(await page.locator('#mount').screenshot()).toMatchSnapshot(); | ||
}); | ||
}); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+943 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-about-filled-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.32 KB
e2e/all-icon.e2e.ts-snapshots/should-show-add-circle-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+930 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-add-circle-filled-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+819 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-add-document-note-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.35 KB
e2e/all-icon.e2e.ts-snapshots/should-show-add-eye-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.11 KB
e2e/all-icon.e2e.ts-snapshots/should-show-add-eye-filled-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+356 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-add-task-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+605 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-add-task-list-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.07 KB
e2e/all-icon.e2e.ts-snapshots/should-show-alarm-bell-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.21 KB
...all-icon.e2e.ts-snapshots/should-show-alarm-bell-cancelled-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+928 Bytes
...n.e2e.ts-snapshots/should-show-alarm-bell-cancelled-filled-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+731 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-alarm-bell-filled-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.51 KB
e2e/all-icon.e2e.ts-snapshots/should-show-alarm-clock-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.14 KB
e2e/all-icon.e2e.ts-snapshots/should-show-alarm-clock-filled-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+947 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-alarm-filled-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.04 KB
e2e/all-icon.e2e.ts-snapshots/should-show-analyze-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.46 KB
e2e/all-icon.e2e.ts-snapshots/should-show-anomaly-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.29 KB
e2e/all-icon.e2e.ts-snapshots/should-show-anomaly-found-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+235 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-app-menu-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+462 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-apps-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+490 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-arrow-down-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+437 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-arrow-down-right-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+406 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-arrow-left-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+416 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-arrow-right-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+510 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-arrow-right-down-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+489 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-arrow-up-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.62 KB
e2e/all-icon.e2e.ts-snapshots/should-show-attach-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.89 KB
e2e/all-icon.e2e.ts-snapshots/should-show-attachment-upload-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+964 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-audio-description1-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.27 KB
e2e/all-icon.e2e.ts-snapshots/should-show-audio-description2-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.14 KB
e2e/all-icon.e2e.ts-snapshots/should-show-audit-report-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.22 KB
e2e/all-icon.e2e.ts-snapshots/should-show-average-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.18 KB
e2e/all-icon.e2e.ts-snapshots/should-show-backup-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.14 KB
e2e/all-icon.e2e.ts-snapshots/should-show-backup-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+260 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-bar-code-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+313 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-barchart-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+602 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-battery-check-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+296 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-battery-empty-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+861 Bytes
...l-icon.e2e.ts-snapshots/should-show-battery-empty-question-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+473 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-battery-exclamation-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+319 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-battery-full-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+562 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-battery-full-check-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+324 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-battery-half-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+347 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-battery-low-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+323 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-battery-quarter-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+719 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-battery-slash-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+323 Bytes
...ll-icon.e2e.ts-snapshots/should-show-battery-three-quarter-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+642 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-battery-xmark-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+996 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-bezier-curve-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.06 KB
e2e/all-icon.e2e.ts-snapshots/should-show-binoculars-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+869 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-binoculars-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.75 KB
e2e/all-icon.e2e.ts-snapshots/should-show-blazor-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+475 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-book-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+471 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-bookmark-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+304 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-bookmark-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+720 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-boundary-signals-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+449 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-building1-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+397 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-building1-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+455 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-building2-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+376 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-building2-filled-1-chromium-linux.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+904 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-bulb-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+344 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-calendar-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+245 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-calendar-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+807 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-calendar-settings-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+581 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-cancel-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.33 KB
e2e/all-icon.e2e.ts-snapshots/should-show-cancelled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+383 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-capacity-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+230 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-capacity-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+605 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-capture-1-chromium-linux.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+913 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-car-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+310 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-card-layout-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+256 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-card-layout-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+404 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-chart-cursor-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+812 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-chart-curve-linear-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+825 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-chart-curve-spline-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+308 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-chart-curve-stepped-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+364 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-chart-diagram-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+427 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-chart-diagram-add-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+365 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-chart-diagrams-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+372 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-chart-labels-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+304 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-chart-labels-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.13 KB
e2e/all-icon.e2e.ts-snapshots/should-show-check-in-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.18 KB
e2e/all-icon.e2e.ts-snapshots/should-show-check-out-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+700 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-checkbox-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+705 Bytes
...on.e2e.ts-snapshots/should-show-checkbox-component-checked-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+273 Bytes
...icon.e2e.ts-snapshots/should-show-checkbox-component-mixed-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+228 Bytes
....e2e.ts-snapshots/should-show-checkbox-component-unchecked-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+638 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-checkbox-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+592 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-checkboxes-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+618 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-checkboxes-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+457 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-chevron-down-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+432 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-chevron-down-small-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+444 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-chevron-left-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+367 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-chevron-left-small-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+418 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-chevron-right-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+381 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-chevron-right-small-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+558 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-chevron-up-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+426 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-chevron-up-small-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.22 KB
e2e/all-icon.e2e.ts-snapshots/should-show-circle-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.42 KB
e2e/all-icon.e2e.ts-snapshots/should-show-circle-dot-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.03 KB
e2e/all-icon.e2e.ts-snapshots/should-show-circle-dot-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+750 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-circle-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.28 KB
e2e/all-icon.e2e.ts-snapshots/should-show-circle-pause-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+827 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-circle-pause-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.36 KB
e2e/all-icon.e2e.ts-snapshots/should-show-circle-play-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+933 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-circle-play-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.27 KB
e2e/all-icon.e2e.ts-snapshots/should-show-circle-stop-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+838 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-circle-stop-filled-1-chromium-linux.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+1.17 KB
e2e/all-icon.e2e.ts-snapshots/should-show-clear-filter-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.05 KB
e2e/all-icon.e2e.ts-snapshots/should-show-clear-filter-filled-1-chromium-linux.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+963 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-clock-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+574 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-close-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+521 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-close-small-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+902 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-cloud-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.19 KB
e2e/all-icon.e2e.ts-snapshots/should-show-cloud-download-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.19 KB
e2e/all-icon.e2e.ts-snapshots/should-show-cloud-download-add-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+943 Bytes
...con.e2e.ts-snapshots/should-show-cloud-download-add-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+893 Bytes
...ll-icon.e2e.ts-snapshots/should-show-cloud-download-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.19 KB
e2e/all-icon.e2e.ts-snapshots/should-show-cloud-download-list-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+943 Bytes
...on.e2e.ts-snapshots/should-show-cloud-download-list-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+627 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-cloud-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.46 KB
e2e/all-icon.e2e.ts-snapshots/should-show-cloud-new-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.02 KB
e2e/all-icon.e2e.ts-snapshots/should-show-cloud-new-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.13 KB
e2e/all-icon.e2e.ts-snapshots/should-show-cloud-success-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+851 Bytes
...all-icon.e2e.ts-snapshots/should-show-cloud-success-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.23 KB
e2e/all-icon.e2e.ts-snapshots/should-show-cloud-upload-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+994 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-cloud-upload-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+892 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-code-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.57 KB
e2e/all-icon.e2e.ts-snapshots/should-show-cogwheel-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+863 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-cogwheel-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+434 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-combine-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.52 KB
e2e/all-icon.e2e.ts-snapshots/should-show-compact-disc-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.33 KB
e2e/all-icon.e2e.ts-snapshots/should-show-compact-disc-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+725 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-compound-block-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+332 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-configuration-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+675 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-configure-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+553 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-configure-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.04 KB
e2e/all-icon.e2e.ts-snapshots/should-show-connected-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+998 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-connector-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+720 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-connector-chart-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+632 Bytes
...l-icon.e2e.ts-snapshots/should-show-connector-chart-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+923 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-connector-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.04 KB
e2e/all-icon.e2e.ts-snapshots/should-show-connector-hex-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+795 Bytes
...all-icon.e2e.ts-snapshots/should-show-connector-hex-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+684 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-connector-rect-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+584 Bytes
...ll-icon.e2e.ts-snapshots/should-show-connector-rect-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+887 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-connector-rhomb-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+685 Bytes
...l-icon.e2e.ts-snapshots/should-show-connector-rhomb-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.3 KB
e2e/all-icon.e2e.ts-snapshots/should-show-consistency-check-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+595 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-contact-details-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+510 Bytes
...l-icon.e2e.ts-snapshots/should-show-contact-details-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+371 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-context-menu-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+340 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-controlled-device-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+334 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-controller-device-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+295 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-copy-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+461 Bytes
...all-icon.e2e.ts-snapshots/should-show-corner-arrow-up-left-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+597 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-couch-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+620 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-couch-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+708 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-create-plant-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+730 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-create-plant-filled-1-chromium-linux.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+889 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-data-egress-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+889 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-data-ingress-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1004 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-data-ingress-egress-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.15 KB
e2e/all-icon.e2e.ts-snapshots/should-show-database-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+953 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-database-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+322 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-details-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+462 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-diagram-module-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+658 Bytes
...l-icon.e2e.ts-snapshots/should-show-diagram-module-library-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+567 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-diagram-module-new-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.48 KB
e2e/all-icon.e2e.ts-snapshots/should-show-diamond-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.35 KB
e2e/all-icon.e2e.ts-snapshots/should-show-disconnected-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-disk-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+413 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-disk-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+970 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-disk-pen-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.02 KB
e2e/all-icon.e2e.ts-snapshots/should-show-distribution-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1 KB
e2e/all-icon.e2e.ts-snapshots/should-show-doc-document-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-document-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+433 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-document-bulk-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+939 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-document-info-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+847 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-document-link-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+817 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-document-management-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+814 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-document-reference-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+846 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-document-settings-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+627 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-document-success-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+856 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-double-check-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+527 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-double-chevron-down-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+395 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-double-chevron-left-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+401 Bytes
...all-icon.e2e.ts-snapshots/should-show-double-chevron-right-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+487 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-double-chevron-up-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+542 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-doublet-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+521 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-doublet-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+609 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-download-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+672 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-download-add-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+644 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-download-list-1-chromium-linux.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+395 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-duplicate-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+518 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-duplicate-document-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.42 KB
e2e/all-icon.e2e.ts-snapshots/should-show-e-mail-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.53 KB
e2e/all-icon.e2e.ts-snapshots/should-show-e-mail-filled-1-chromium-linux.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+1.54 KB
e2e/all-icon.e2e.ts-snapshots/should-show-earth-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+713 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-edit-plant-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1012 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-ellipse-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+851 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-ellipse-arc-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+630 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-ellipse-filled-1-chromium-linux.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+1.05 KB
e2e/all-icon.e2e.ts-snapshots/should-show-error-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.34 KB
e2e/all-icon.e2e.ts-snapshots/should-show-explore-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.18 KB
e2e/all-icon.e2e.ts-snapshots/should-show-explore-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+660 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-export-1-chromium-linux.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+1.35 KB
e2e/all-icon.e2e.ts-snapshots/should-show-eye-cancelled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.21 KB
...all-icon.e2e.ts-snapshots/should-show-eye-cancelled-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1007 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-eye-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+964 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-factory-reset-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+966 Bytes
...all-icon.e2e.ts-snapshots/should-show-factory-reset-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+748 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-filter-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+557 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-filter-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+748 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-filter-outline-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+394 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-flag-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+343 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-flag-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+376 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-folder-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+641 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-folder-down-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+533 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-folder-down-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+279 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-folder-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+373 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-folder-new-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+370 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-folder-new-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+447 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-folder-new-outline-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+752 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-folder-open-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+604 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-folder-open-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+736 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-folder-open-outline-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+376 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-folder-outline-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+669 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-folder-up-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+544 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-folder-up-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+268 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-full-screeen-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+288 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-full-screeen-exit-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+326 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-function-block-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+640 Bytes
...l-icon.e2e.ts-snapshots/should-show-function-block-library-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+413 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-function-block-new-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+337 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-function-diagram-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+440 Bytes
...all-icon.e2e.ts-snapshots/should-show-function-diagram-new-1-chromium-linux.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+1.1 KB
e2e/all-icon.e2e.ts-snapshots/should-show-gauge-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+976 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-gaugechart-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+948 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-global-plant-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1 KB
e2e/all-icon.e2e.ts-snapshots/should-show-global-plant-filled-1-chromium-linux.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+1.36 KB
e2e/all-icon.e2e.ts-snapshots/should-show-globe-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+549 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-goto-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+352 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-group-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.22 KB
e2e/all-icon.e2e.ts-snapshots/should-show-hard-reset-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+351 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-hardware-cabinet-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.29 KB
e2e/all-icon.e2e.ts-snapshots/should-show-health-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1018 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-health-filled-1-chromium-linux.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+778 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-heart-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+908 Bytes
...ll-icon.e2e.ts-snapshots/should-show-hexagon-vertical-bars-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.41 KB
...2e.ts-snapshots/should-show-hexagon-vertical-bars-database-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.25 KB
...napshots/should-show-hexagon-vertical-bars-database-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+724 Bytes
....e2e.ts-snapshots/should-show-hexagon-vertical-bars-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+333 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-hierarchy-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.11 KB
e2e/all-icon.e2e.ts-snapshots/should-show-highlight-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1006 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-highlight-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.32 KB
e2e/all-icon.e2e.ts-snapshots/should-show-history-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.19 KB
e2e/all-icon.e2e.ts-snapshots/should-show-history-list-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+707 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-home-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+487 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-home-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+677 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-hourglass-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+881 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-image-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+601 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-image-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+736 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-import-1-chromium-linux.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+313 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-info-feed-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+939 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-info-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+501 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-ingestion-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+643 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-ingestion-report-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+797 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-ink-pen-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+751 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-inquiry-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+667 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-inquiry-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+960 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-inquiry-mail-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+366 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-item-details-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+296 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-item-details-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+699 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-label-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+523 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-label-filled-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.01 KB
e2e/all-icon.e2e.ts-snapshots/should-show-language-1-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+987 Bytes
e2e/all-icon.e2e.ts-snapshots/should-show-language-filled-1-chromium-linux.png
Oops, something went wrong.
Oops, something went wrong.