1 changed files with 21 additions and 0 deletions
			
			
		| @ -0,0 +1,21 @@ | |||
| import { test, expect } from '@playwright/test'; | |||
| 
 | |||
| test('Check ID generation', async ({ page }) => { | |||
|   // Load Account view
 | |||
|   await page.goto('./account'); | |||
| 
 | |||
|   // Check that ID is empty
 | |||
|   await expect(page.locator('#sectionIdentityDetails code.truncate')).toBeEmpty(); | |||
| 
 | |||
|   // Load homepage to trigger ID generation (?)
 | |||
|   await page.goto('./'); | |||
| 
 | |||
|   // Wait for activity feed to start loading, as a delay
 | |||
|   await expect(page.locator('ul#listLatestActivity li:nth-child(10)')).toBeVisible(); | |||
| 
 | |||
|   // Go back to Account view
 | |||
|   await page.goto('./account'); | |||
| 
 | |||
|   // Check that ID is now generated
 | |||
|   await expect(page.locator('#sectionIdentityDetails code.truncate')).toContainText('did:ethr:'); | |||
| }); | |||
					Loading…
					
					
				
		Reference in new issue