forked from uber/baseweb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(e2e): change from puppeteer to playwright in integration tests (u…
…ber#4937) * chore(e2e): use playwright in e2e tests * chore(e2e): update integration tests to playwright * chore(e2e): use playwright docker image * chore(e2e): workers and vrt cwd * chore(playwright): fix vrt * fix(e2e): handle ci errors * fix(vrt): update failing vrt behavior * fix(playwright): build e2e server in web image * test(vrt): update visual snapshots for 93466d6 (uber#4946) Co-authored-by: UberOpenSourceBot <[email protected]> * fix(select): migrate test to playwright * test(vrt): update visual snapshots for c9226e1 uber#4947) Co-authored-by: UberOpenSourceBot <[email protected]> * fix(e2e): correct some tests * fix(map-marker): make map circle transparent for snapshots * test(vrt): update visual snapshots for eaa8c73 (uber#4950) Co-authored-by: UberOpenSourceBot <[email protected]> Co-authored-by: UberOpenSourceBot <[email protected]> Co-authored-by: UberOpenSourceBot <[email protected]>
- Loading branch information
1 parent
ab02846
commit 8bed30a
Showing
4,326 changed files
with
3,625 additions
and
5,747 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
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,4 +1,4 @@ | ||
# Learn how to add code owners here: | ||
# https://help.github.com/en/articles/about-code-owners | ||
* @chasestarr @tajo @lhbrennan @williamernest | ||
/vrt/__image_snapshots__/ @ghost | ||
/vrt/tests.vrt.js-snapshots/ @ghost |
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 |
---|---|---|
|
@@ -26,5 +26,6 @@ public | |
!documentation-site/public | ||
versions.json | ||
__artifacts__ | ||
test-results | ||
# Local Netlify folder | ||
.netlify |
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
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM mcr.microsoft.com/playwright:v1.19.2-focal | ||
|
||
WORKDIR /baseui | ||
|
||
# Install zhCn fonts | ||
RUN apt update --allow-releaseinfo-change && apt install fonts-wqy-zenhei | ||
# Copy manifests and install dependencies. | ||
# Doing this before a build step can more effectively leverage Docker caching. | ||
COPY package.json yarn.lock /baseui/ | ||
RUN yarn | ||
RUN yarn playwright install --with-deps | ||
|
||
# Copy the current files to the docker image. | ||
COPY . . | ||
|
||
RUN yarn e2e:build |
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
Oops, something went wrong.