ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 1 | import { initCommonFixtures } from "../common/init"; |
| 2 | |
| 3 | describe('The Welcome Page', function () { |
| 4 | |
| 5 | beforeEach(() => { |
| 6 | cy.server(); |
| 7 | initCommonFixtures(cy); |
| 8 | |
| 9 | cy.fixture('metadata-vf').as('metadata'); |
| 10 | cy.fixture('full-data-vf').as('fullData'); |
| 11 | }) |
| 12 | |
| 13 | it.skip('successfully loads', function () { |
| 14 | cy.visit('/'); |
| 15 | cy.get('.project-icon').should('be.visible'); |
| 16 | }) |
| 17 | it.skip('redirects to the dashboard', function () { |
| 18 | cy.url().should('contain', 'dashboard') |
| 19 | }) |
| 20 | }) |