Only upload playwright to S3 if we have the right credentials (#2074)

These credentials aren't available to non-tldraw contributors which was
breaking uploads.

---------

Co-authored-by: Steve Ruiz <steveruizok@gmail.com>
This commit is contained in:
alex 2023-10-13 14:42:41 +01:00 committed by GitHub
parent 1f4df14d4f
commit 22955bb0ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 1 deletions

View file

@ -0,0 +1,10 @@
import test from '@playwright/test'
import { setup } from '../shared-e2e'
test.describe('ui', () => {
test.beforeEach(setup)
test('mobile style panel opens and closes when tapped', async ({ isMobile }) => {
test.skip(!isMobile, 'only run on mobile')
})
})