playwright/packages/playwright-test/src/matchers
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
..
DEPS.list chore: move testInfo and timeoutManager to worker/ (#20803) 2023-02-09 19:22:17 -08:00
expect.ts feat(expect): roll to v29.5.0 (#23629) 2023-06-19 15:18:59 -07:00
matcherHint.ts feat(expect): roll to v29.5.0 (#23629) 2023-06-19 15:18:59 -07:00
matchers.ts feat(expect): roll to v29.5.0 (#23629) 2023-06-19 15:18:59 -07:00
toBeTruthy.ts feat(expect): roll to v29.5.0 (#23629) 2023-06-19 15:18:59 -07:00
toEqual.ts feat(expect): roll to v29.5.0 (#23629) 2023-06-19 15:18:59 -07:00
toMatchSnapshot.ts feat(expect): roll to v29.5.0 (#23629) 2023-06-19 15:18:59 -07:00
toMatchText.ts feat(expect): roll to v29.5.0 (#23629) 2023-06-19 15:18:59 -07:00