UI improvements/sidebar pinning (#175)

Co-authored-by: Aria Minaei <aria.minaei@gmail.com>
This commit is contained in:
Andrew Prifer 2022-05-25 20:42:01 +02:00 committed by GitHub
parent ec18687a98
commit 0690a85ae2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
46 changed files with 998 additions and 501 deletions

View file

@ -12,7 +12,12 @@ test.describe('setting-static-props', () => {
test('Undo/redo', async ({page}) => {
await page.locator('[data-testid="OutlinePanel-TriggerButton"]').click()
await page.locator('span:has-text("sample object")').first().click()
// https://github.com/microsoft/playwright/issues/12298
// The div does in fact intercept pointer events, but it is meant to 🤦‍
await page
.locator('span:has-text("sample object")')
.first()
.click({force: true})
const detailPanel = page.locator('[data-testid="DetailPanel-Object"]')