| 
									
										
										
										
											2021-06-06 17:09:53 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. | 
					
						
							|  |  |  |  * Modifications copyright (c) Microsoft Corporation. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This source code is licensed under the MIT license found in the | 
					
						
							|  |  |  |  * LICENSE file in the root directory of this source tree. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-14 12:58:10 -07:00
										 |  |  | import type * as expect from 'expect'; | 
					
						
							| 
									
										
										
										
											2021-06-06 17:09:53 -07:00
										 |  |  | import type { ExpectedAssertionsErrors } from 'expect/build/types'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export declare type AsymmetricMatcher = Record<string, any>; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export declare type Expect = { | 
					
						
							| 
									
										
										
										
											2021-06-07 08:02:01 -07:00
										 |  |  |   <T = unknown>(actual: T): PlaywrightTest.Matchers<T>; | 
					
						
							| 
									
										
										
										
											2021-06-06 17:09:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Sourced from node_modules/expect/build/types.d.ts
 | 
					
						
							|  |  |  |   assertions(arg0: number): void; | 
					
						
							|  |  |  |   extend(arg0: any): void; | 
					
						
							|  |  |  |   extractExpectedAssertionsErrors: () => ExpectedAssertionsErrors; | 
					
						
							|  |  |  |   getState(): expect.MatcherState; | 
					
						
							|  |  |  |   hasAssertions(): void; | 
					
						
							|  |  |  |   setState(state: Partial<expect.MatcherState>): void; | 
					
						
							|  |  |  |   any(expectedObject: any): AsymmetricMatcher; | 
					
						
							|  |  |  |   anything(): AsymmetricMatcher; | 
					
						
							|  |  |  |   arrayContaining(sample: Array<unknown>): AsymmetricMatcher; | 
					
						
							|  |  |  |   objectContaining(sample: Record<string, unknown>): AsymmetricMatcher; | 
					
						
							|  |  |  |   stringContaining(expected: string): AsymmetricMatcher; | 
					
						
							|  |  |  |   stringMatching(expected: string | RegExp): AsymmetricMatcher; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-25 17:27:39 +02:00
										 |  |  | type OverriddenExpectProperties =  | 
					
						
							|  |  |  | 'not' | | 
					
						
							|  |  |  | 'resolves' | | 
					
						
							|  |  |  | 'rejects' | | 
					
						
							|  |  |  | 'toMatchInlineSnapshot' | | 
					
						
							|  |  |  | 'toThrowErrorMatchingInlineSnapshot' | | 
					
						
							|  |  |  | 'toMatchSnapshot' |  | 
					
						
							|  |  |  | 'toThrowErrorMatchingSnapshot'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-06 17:09:53 -07:00
										 |  |  | declare global { | 
					
						
							| 
									
										
										
										
											2021-06-07 08:02:01 -07:00
										 |  |  |   export namespace PlaywrightTest { | 
					
						
							| 
									
										
										
										
											2021-06-25 17:27:39 +02:00
										 |  |  |     export interface Matchers<R> extends Omit<expect.Matchers<R>, OverriddenExpectProperties> { | 
					
						
							| 
									
										
										
										
											2021-06-06 17:09:53 -07:00
										 |  |  |       /** | 
					
						
							|  |  |  |        * If you know how to test something, `.not` lets you test its opposite. | 
					
						
							|  |  |  |        */ | 
					
						
							| 
									
										
										
										
											2021-06-07 08:02:01 -07:00
										 |  |  |       not: PlaywrightTest.Matchers<R>; | 
					
						
							| 
									
										
										
										
											2021-06-06 17:09:53 -07:00
										 |  |  |       /** | 
					
						
							|  |  |  |        * Use resolves to unwrap the value of a fulfilled promise so any other | 
					
						
							|  |  |  |        * matcher can be chained. If the promise is rejected the assertion fails. | 
					
						
							|  |  |  |        */ | 
					
						
							| 
									
										
										
										
											2021-06-07 08:02:01 -07:00
										 |  |  |       resolves: PlaywrightTest.Matchers<Promise<R>>; | 
					
						
							| 
									
										
										
										
											2021-06-06 17:09:53 -07:00
										 |  |  |       /** | 
					
						
							|  |  |  |       * Unwraps the reason of a rejected promise so any other matcher can be chained. | 
					
						
							|  |  |  |       * If the promise is fulfilled the assertion fails. | 
					
						
							|  |  |  |       */ | 
					
						
							| 
									
										
										
										
											2021-06-07 08:02:01 -07:00
										 |  |  |       rejects: PlaywrightTest.Matchers<Promise<R>>; | 
					
						
							| 
									
										
										
										
											2021-06-06 17:09:53 -07:00
										 |  |  |       /** | 
					
						
							|  |  |  |        * Match snapshot | 
					
						
							|  |  |  |        */ | 
					
						
							| 
									
										
										
										
											2021-06-24 02:08:02 -07:00
										 |  |  |       toMatchSnapshot(options: { | 
					
						
							|  |  |  |         name: string, | 
					
						
							| 
									
										
										
										
											2021-06-06 17:09:53 -07:00
										 |  |  |         threshold?: number | 
					
						
							|  |  |  |       }): R; | 
					
						
							|  |  |  |       /** | 
					
						
							|  |  |  |        * Match snapshot | 
					
						
							|  |  |  |        */ | 
					
						
							|  |  |  |       toMatchSnapshot(name: string, options?: { | 
					
						
							|  |  |  |         threshold?: number | 
					
						
							|  |  |  |       }): R; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export { }; |