mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	
		
			
	
	
		
			53 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
		
		
			
		
	
	
			53 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
|   | /** | ||
|  |  * Copyright (c) Microsoft Corporation. | ||
|  |  * | ||
|  |  * 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 { stripAnsi } from '../config/utils'; | ||
|  | import { test, expect } from './pageTest'; | ||
|  | 
 | ||
|  | test('should print timed out error message', async ({ page }) => { | ||
|  |   await page.setContent('<div id=node>Text content</div>'); | ||
|  |   const error = await expect(page.locator('no-such-thing')).toHaveText('hey', { timeout: 1000 }).catch(e => e); | ||
|  |   expect(stripAnsi(error.message)).toContain('Timed out 1000ms waiting for expect(received).toHaveText(expected)'); | ||
|  | }); | ||
|  | 
 | ||
|  | test('should print timed out error message when value does not match', async ({ page }) => { | ||
|  |   await page.setContent('<div id=node>Text content</div>'); | ||
|  |   const error = await expect(page.locator('div')).toHaveText('hey', { timeout: 1000 }).catch(e => e); | ||
|  |   expect(stripAnsi(error.message)).toContain('Timed out 1000ms waiting for expect(received).toHaveText(expected)'); | ||
|  | }); | ||
|  | 
 | ||
|  | test('should print timed out error message with impossible timeout', async ({ page }) => { | ||
|  |   await page.setContent('<div id=node>Text content</div>'); | ||
|  |   const error = await expect(page.locator('no-such-thing')).toHaveText('hey', { timeout: 1 }).catch(e => e); | ||
|  |   expect(stripAnsi(error.message)).toContain('Timed out 1ms waiting for expect(received).toHaveText(expected)'); | ||
|  | }); | ||
|  | 
 | ||
|  | test('should print timed out error message when value does not match with impossible timeout', async ({ page }) => { | ||
|  |   await page.setContent('<div id=node>Text content</div>'); | ||
|  |   const error = await expect(page.locator('div')).toHaveText('hey', { timeout: 1 }).catch(e => e); | ||
|  |   expect(stripAnsi(error.message)).toContain('Timed out 1ms waiting for expect(received).toHaveText(expected)'); | ||
|  | }); | ||
|  | 
 | ||
|  | test('should not print timed out error message when page closes', async ({ page }) => { | ||
|  |   await page.setContent('<div id=node>Text content</div>'); | ||
|  |   const [error] = await Promise.all([ | ||
|  |     expect(page.locator('div')).toHaveText('hey', { timeout: 100000 }).catch(e => e), | ||
|  |     page.close(), | ||
|  |   ]); | ||
|  |   expect(stripAnsi(error.message)).toContain('expect.toHaveText with timeout 100000ms'); | ||
|  |   expect(stripAnsi(error.message)).not.toContain('Timed out'); | ||
|  | }); |