playwright/packages/playwright-test/bundles
Dmitry Gozman fbb5d48283
feat(expect): roll to v29.5.0 (#23629)
There is a breaking in change in the `MatcherContext` that is passed to
matcher functions, so we now have `!!this.isNot` in a few places. The
same could happen to custom matcher in the wild.

```ts
// Old
{
  isNot: boolean;
  promise: string;
}
```

```ts
// New
{
  isNot?: boolean;
  promise?: string;
}
```

Fixes #23612.
2023-06-19 15:18:59 -07:00
..
babel chore: add comment about async imports in babel (#23374) 2023-05-31 18:32:09 +02:00
expect feat(expect): roll to v29.5.0 (#23629) 2023-06-19 15:18:59 -07:00
utils chore: make trace viewer work over http (#23531) 2023-06-05 16:30:30 -07:00