fix(test-runner): remove unimplemented jest expect types (#7292)

This commit is contained in:
Joel Einbinder 2021-06-24 02:08:02 -07:00 committed by GitHub
parent bd86e70465
commit ba3f0ff6f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

14
types/testExpect.d.ts vendored
View File

@ -31,7 +31,15 @@ export declare type Expect = {
declare global {
export namespace PlaywrightTest {
export interface Matchers<R> extends expect.Matchers<R> {
type OverriddenProperties =
'not' |
'resolves' |
'rejects' |
'toMatchInlineSnapshot' |
'toThrowErrorMatchingInlineSnapshot' |
'toMatchSnapshot' |
'toThrowErrorMatchingSnapshot';
export interface Matchers<R> extends Omit<expect.Matchers<R>, OverriddenProperties> {
/**
* If you know how to test something, `.not` lets you test its opposite.
*/
@ -49,8 +57,8 @@ declare global {
/**
* Match snapshot
*/
toMatchSnapshot(options?: {
name?: string,
toMatchSnapshot(options: {
name: string,
threshold?: number
}): R;
/**