fix(e2e): add missing esc for (())

pull/5935/head
Andelf 2022-07-06 22:01:42 +08:00 committed by Tienson Qin
parent 139075e679
commit dda818c26a
2 changed files with 3 additions and 1 deletions

View File

@ -179,7 +179,7 @@ jobs:
run: xvfb-run -- yarn e2e-test
env:
CI: true
DEBUG: "pw:test"
DEBUG: "pw:api"
- name: Save test artifacts
if: ${{ failure() }}

View File

@ -203,6 +203,8 @@ test('auto completion and auto pair', async ({ page, block }) => {
await block.mustType('type (', { toBe: 'type ()' })
await block.mustType('(', { toBe: 'type (())' })
await block.escapeEditing() // escape any popup from `(())`
// [[ #3251
await block.clickNext()