Catalog alignment
[sdc.git] / catalog-ui / cypress / integration / welcome_page.spec.js
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 })