summaryrefslogtreecommitdiffstats
path: root/catalog-ui/cypress/integration/welcome_page.spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-ui/cypress/integration/welcome_page.spec.js')
-rw-r--r--catalog-ui/cypress/integration/welcome_page.spec.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/catalog-ui/cypress/integration/welcome_page.spec.js b/catalog-ui/cypress/integration/welcome_page.spec.js
new file mode 100644
index 0000000000..b462eb0e14
--- /dev/null
+++ b/catalog-ui/cypress/integration/welcome_page.spec.js
@@ -0,0 +1,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')
+ })
+}) \ No newline at end of file