22955bb0ec
These credentials aren't available to non-tldraw contributors which was breaking uploads. --------- Co-authored-by: Steve Ruiz <steveruizok@gmail.com>
10 lines
263 B
TypeScript
10 lines
263 B
TypeScript
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')
|
|
})
|
|
})
|