|
| 1 | +describe('Visit Tests', function() { |
| 2 | + it('Visits the Explorer', function() { |
| 3 | + cy.visit('http://localhost:8000/explorer') |
| 4 | + }) |
| 5 | + it('Visits the Grants Page', function() { |
| 6 | + cy.visit('http://localhost:8000/grants') |
| 7 | + }) |
| 8 | + it('Visits the Landing Page', function() { |
| 9 | + cy.visit('http://localhost:8000/') |
| 10 | + }) |
| 11 | + it('Visits the Kudos Page', function() { |
| 12 | + cy.visit('http://localhost:8000/kudos') |
| 13 | + }) |
| 14 | + it('Visits the Kudos Marketplace', function() { |
| 15 | + cy.visit('http://localhost:8000/kudos/marketplace') |
| 16 | + }) |
| 17 | + /* |
| 18 | + it('Visits the Kudos Sender', function() { |
| 19 | + cy.visit('http://localhost:8000/kudos/send') |
| 20 | + cy.url().should('contain', 'github.com') |
| 21 | + }) |
| 22 | + */ |
| 23 | + it('Visits the Labs Page', function() { |
| 24 | + cy.visit('http://localhost:8000/explorer') |
| 25 | + }) |
| 26 | + it('Visits the About Page', function() { |
| 27 | + cy.visit('http://localhost:8000/about') |
| 28 | + }) |
| 29 | + it('Visits the Mission Page', function() { |
| 30 | + cy.visit('http://localhost:8000/mission') |
| 31 | + }) |
| 32 | + /* |
| 33 | + it('Visits the Results Page', function() { |
| 34 | + cy.visit('http://localhost:8000/results') |
| 35 | + }) |
| 36 | + */ |
| 37 | + it('Visits the Activity Page', function() { |
| 38 | + cy.visit('http://localhost:8000/activity') |
| 39 | + }) |
| 40 | + it('Visits the Help Page', function() { |
| 41 | + cy.visit('http://localhost:8000/help') |
| 42 | + }) |
| 43 | + it('Visits the Terms of Service Page', function() { |
| 44 | + cy.visit('http://localhost:8000/legal/terms') |
| 45 | + }) |
| 46 | + it('Visits the Privacy Page', function() { |
| 47 | + cy.visit('http://localhost:8000/legal/privacy') |
| 48 | + }) |
| 49 | +}) |
0 commit comments