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