blob: b462eb0e1495c836870816b927329339d1a32054 [file] [log] [blame]
ys969316a9fce2020-01-19 13:50:02 +02001import { initCommonFixtures } from "../common/init";
2
3describe('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})