| 
									
										
										
										
											2021-06-06 17:09:53 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Copyright Microsoft Corporation. All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the Apache License, Version 2.0 (the "License"); | 
					
						
							|  |  |  |  * you may not use this file except in compliance with the License. | 
					
						
							|  |  |  |  * You may obtain a copy of the License at | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *     http://www.apache.org/licenses/LICENSE-2.0
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  |  * distributed under the License is distributed on an "AS IS" BASIS, | 
					
						
							|  |  |  |  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  |  * See the License for the specific language governing permissions and | 
					
						
							|  |  |  |  * limitations under the License. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import { test, expect } from './playwright-test-fixtures'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | test('basics should work', async ({runTSC}) => { | 
					
						
							|  |  |  |   const result = await runTSC({ | 
					
						
							|  |  |  |     'a.spec.ts': `
 | 
					
						
							| 
									
										
										
										
											2021-06-06 22:07:07 -07:00
										 |  |  |       const { test } = pwt; | 
					
						
							| 
									
										
										
										
											2021-06-06 17:09:53 -07:00
										 |  |  |       test.describe('suite', () => { | 
					
						
							|  |  |  |         test.beforeEach(async () => {}); | 
					
						
							|  |  |  |         test('my test', async({}, testInfo) => { | 
					
						
							|  |  |  |           expect(testInfo.title).toBe('my test'); | 
					
						
							|  |  |  |           testInfo.annotations[0].type; | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2021-08-09 13:26:33 -07:00
										 |  |  |       // @ts-expect-error
 | 
					
						
							|  |  |  |       test.foo(); | 
					
						
							| 
									
										
										
										
											2021-06-06 17:09:53 -07:00
										 |  |  |     `
 | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   expect(result.exitCode).toBe(0); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | test('can pass sync functions everywhere', async ({runTSC}) => { | 
					
						
							|  |  |  |   const result = await runTSC({ | 
					
						
							|  |  |  |     'a.spec.ts': `
 | 
					
						
							| 
									
										
										
										
											2021-06-06 22:07:07 -07:00
										 |  |  |       const test = pwt.test.extend<{ foo: string }>({ | 
					
						
							| 
									
										
										
										
											2021-06-06 17:09:53 -07:00
										 |  |  |         foo: ({}, use) => use('bar'), | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       test.beforeEach(({ foo }) => {}); | 
					
						
							|  |  |  |       test.afterEach(({ foo }) => {}); | 
					
						
							|  |  |  |       test.beforeAll(() => {}); | 
					
						
							|  |  |  |       test.afterAll(() => {}); | 
					
						
							|  |  |  |       test('my test', ({ foo }) => {}); | 
					
						
							|  |  |  |     `
 | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   expect(result.exitCode).toBe(0); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | test('can return anything from hooks', async ({runTSC}) => { | 
					
						
							|  |  |  |   const result = await runTSC({ | 
					
						
							|  |  |  |     'a.spec.ts': `
 | 
					
						
							| 
									
										
										
										
											2021-06-06 22:07:07 -07:00
										 |  |  |       const { test } = pwt; | 
					
						
							| 
									
										
										
										
											2021-06-06 17:09:53 -07:00
										 |  |  |       test.beforeEach(() => '123'); | 
					
						
							|  |  |  |       test.afterEach(() => 123); | 
					
						
							|  |  |  |       test.beforeAll(() => [123]); | 
					
						
							|  |  |  |       test.afterAll(() => ({ a: 123 })); | 
					
						
							|  |  |  |     `
 | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   expect(result.exitCode).toBe(0); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | test('test.declare should check types', async ({runTSC}) => { | 
					
						
							|  |  |  |   const result = await runTSC({ | 
					
						
							|  |  |  |     'helper.ts': `
 | 
					
						
							| 
									
										
										
										
											2021-06-06 22:07:07 -07:00
										 |  |  |       export const test = pwt.test; | 
					
						
							| 
									
										
										
										
											2021-06-06 17:09:53 -07:00
										 |  |  |       export const test1 = test.declare<{ foo: string }>(); | 
					
						
							|  |  |  |       export const test2 = test1.extend<{ bar: number }>({ | 
					
						
							|  |  |  |         bar: async ({ foo }, run) => { await run(parseInt(foo)); } | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       export const test3 = test1.extend<{ bar: number }>({ | 
					
						
							|  |  |  |         // @ts-expect-error
 | 
					
						
							|  |  |  |         bar: async ({ baz }, run) => { await run(42); } | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |     'playwright.config.ts': `
 | 
					
						
							|  |  |  |       import { test1 } from './helper'; | 
					
						
							| 
									
										
										
										
											2021-06-06 22:07:07 -07:00
										 |  |  |       const configs: pwt.Config[] = []; | 
					
						
							| 
									
										
										
										
											2021-06-06 17:09:53 -07:00
										 |  |  |       configs.push({}); | 
					
						
							|  |  |  |       configs.push({ | 
					
						
							|  |  |  |         define: { | 
					
						
							|  |  |  |           test: test1, | 
					
						
							|  |  |  |           fixtures: { foo: 'foo' } | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       configs.push({ | 
					
						
							|  |  |  |         // @ts-expect-error
 | 
					
						
							|  |  |  |         define: { test: {}, fixtures: {} }, | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       module.exports = configs; | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |     'a.spec.ts': `
 | 
					
						
							|  |  |  |       import { test, test1, test2, test3 } from './helper'; | 
					
						
							|  |  |  |       // @ts-expect-error
 | 
					
						
							|  |  |  |       test('my test', async ({ foo }) => {}); | 
					
						
							|  |  |  |       test1('my test', async ({ foo }) => {}); | 
					
						
							|  |  |  |       // @ts-expect-error
 | 
					
						
							|  |  |  |       test1('my test', async ({ foo, bar }) => {}); | 
					
						
							|  |  |  |       test2('my test', async ({ foo, bar }) => {}); | 
					
						
							|  |  |  |       // @ts-expect-error
 | 
					
						
							|  |  |  |       test2('my test', async ({ foo, baz }) => {}); | 
					
						
							|  |  |  |     `
 | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   expect(result.exitCode).toBe(0); | 
					
						
							|  |  |  | }); |