playwright/packages/playwright-test/types
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
..
reporterPrivate.ts feat(shard): introduce mode: 'default' (#23023) 2023-05-18 13:07:22 -07:00
test.d.ts feat(expect): roll to v29.5.0 (#23629) 2023-06-19 15:18:59 -07:00
testReporter.d.ts chore: render plain class links in types (#23508) 2023-06-05 18:50:44 +02:00