playwright/packages/playwright-test/bundles/expect
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
..
src chore: make bundles typed (#13620) 2022-04-18 17:50:25 -07:00
package-lock.json feat(expect): roll to v29.5.0 (#23629) 2023-06-19 15:18:59 -07:00
package.json feat(expect): roll to v29.5.0 (#23629) 2023-06-19 15:18:59 -07:00