mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-30 18:47:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			462 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			462 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| describe('AdminDashboardAuthentication', function() {
 | |
|   before(() => {
 | |
|     cy.app('clean');
 | |
|     cy.appScenario('default')
 | |
|   });
 | |
| 
 | |
|   it('authenticates an admin ', function() {
 | |
|     cy.visit('/');
 | |
| 
 | |
|     cy.get("[data-testid='email_input']")
 | |
|       .clear()
 | |
|       .type('john@acme.inc');
 | |
|     cy.get("[data-testid='password_input']")
 | |
|       .clear()
 | |
|       .type('123456');
 | |
| 
 | |
|     cy.get("[data-testid='submit_button']").click();
 | |
|     cy.contains('Conversations');
 | |
|   });
 | |
| });
 | 
