From e758f29d89a4e5ad9064b0d938fe33a6425f77fb Mon Sep 17 00:00:00 2001 From: Brian Gann Date: Thu, 28 Mar 2024 22:44:48 -0400 Subject: [PATCH] remove cypress --- cypress.json | 3 --- cypress/integration/01-smoke.spec.ts | 10 ---------- 2 files changed, 13 deletions(-) delete mode 100644 cypress.json delete mode 100644 cypress/integration/01-smoke.spec.ts diff --git a/cypress.json b/cypress.json deleted file mode 100644 index 60ed5aa..0000000 --- a/cypress.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "video": false -} diff --git a/cypress/integration/01-smoke.spec.ts b/cypress/integration/01-smoke.spec.ts deleted file mode 100644 index ed0867d..0000000 --- a/cypress/integration/01-smoke.spec.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { e2e } from '@grafana/e2e'; - -e2e.scenario({ - describeName: 'Smoke test', - itName: 'Smoke test', - scenario: () => { - e2e.pages.Home.visit(); - e2e().contains('Welcome to Grafana').should('be.visible'); - }, -});