This commit is contained in:
Max Schmitt 2024-07-16 15:24:48 +02:00
parent 3022a42023
commit 2e375f82ca
2 changed files with 2 additions and 3 deletions

View file

@ -125,7 +125,7 @@ All API classes, methods, and events should have a description in [`docs/src`](h
To run the documentation linter, use: To run the documentation linter, use:
```bash ```bash
npm run doclint npm run doc
``` ```
To build the documentation site locally and test how your changes will look in practice: To build the documentation site locally and test how your changes will look in practice:

View file

@ -350,8 +350,7 @@ it('should emit event via prepend', async ({ page, server }) => {
expect(chooser).toBeTruthy(); expect(chooser).toBeTruthy();
}); });
it('should emit event for iframe', async ({ page, server, browserName }) => { it('should emit event for iframe', async ({ page, server }) => {
it.skip(browserName === 'firefox');
const frame = await attachFrame(page, 'frame1', server.EMPTY_PAGE); const frame = await attachFrame(page, 'frame1', server.EMPTY_PAGE);
await frame.setContent(`<input type=file>`); await frame.setContent(`<input type=file>`);
const [chooser] = await Promise.all([ const [chooser] = await Promise.all([