From 36ff58bfda7f8461e715e41c50be3c54831f5f62 Mon Sep 17 00:00:00 2001 From: k3yi0 Date: Tue, 7 Jun 2022 09:12:13 +0200 Subject: [PATCH] chore(cypress): remove only keyword --- ui/cypress/integration/admin.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/cypress/integration/admin.test.ts b/ui/cypress/integration/admin.test.ts index 1b00945f5..3d15c6e86 100644 --- a/ui/cypress/integration/admin.test.ts +++ b/ui/cypress/integration/admin.test.ts @@ -33,7 +33,7 @@ describe('Use Admin tab', () => { cy.visit(url + '/databases') }) - it.only('create InfluxDB, edit it, and delete it', () => { + it('create InfluxDB, edit it, and delete it', () => { cy.getByTestID('create-db--button').click({force: true}) cy.getByTestID('cancel').click({force: true}) cy.getByTestID('create-db--button').click({force: true}) @@ -83,7 +83,7 @@ describe('Use Admin tab', () => { }) }) - describe('Users', () => { + describe.only('Users', () => { const user = { name: 'Smiley', password: 'securePassword123',