* test: login more directly * test: separate login from other visits In a single test, Cypress can only visit within a single domain, hence the separation. * chore: fail slowly for all strategies * test: user certified user for showing cert * test: fix and cleanup certifications
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import '@testing-library/cypress/add-commands';
 | 
						|
 | 
						|
describe('Settings certifications area', () => {
 | 
						|
  describe('initially', () => {
 | 
						|
    before(() => {
 | 
						|
      cy.exec('npm run seed');
 | 
						|
      cy.login();
 | 
						|
    });
 | 
						|
 | 
						|
    it('Should render the default settings page', () => {
 | 
						|
      cy.visit('/settings/');
 | 
						|
      cy.findAllByText('Claim Certification').should($btns => {
 | 
						|
        expect($btns).to.have.length(15);
 | 
						|
      });
 | 
						|
      cy.findByText('Show Certification').should('not.exist');
 | 
						|
      cy.contains('Agree');
 | 
						|
      cy.contains('Claim Certification').click();
 | 
						|
      cy.contains(
 | 
						|
        'To claim a certification, you must first accept our academic honesty policy'
 | 
						|
      );
 | 
						|
    });
 | 
						|
  });
 | 
						|
 | 
						|
  describe('after isHonest', () => {
 | 
						|
    before(() => {
 | 
						|
      cy.exec('npm run seed');
 | 
						|
      cy.login();
 | 
						|
    });
 | 
						|
 | 
						|
    it('Should update the user as they try to claim their certifications', () => {
 | 
						|
      cy.visit('/settings');
 | 
						|
      cy.contains('Agree').click();
 | 
						|
      cy.contains('You have accepted our Academic Honesty Policy.');
 | 
						|
      cy.contains('Claim Certification').click();
 | 
						|
      cy.contains(
 | 
						|
        'It looks like you have not completed the necessary steps. Please complete the required projects to claim the Responsive Web Design Certification'
 | 
						|
      );
 | 
						|
    });
 | 
						|
  });
 | 
						|
});
 |