Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 1 commit into from
Jun 24, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 11 additions & 3 deletions types/testExpect.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand All @@ -49,8 +57,8 @@ declare global {
/**
* Match snapshot
*/
toMatchSnapshot(options?: {
name?: string,
toMatchSnapshot(options: {
name: string,
threshold?: number
}): R;
/**
Expand Down