diff --git a/cypress/testcases/backupAndSnapshot/vmBackup.spec.ts b/cypress/testcases/backupAndSnapshot/vmBackup.spec.ts index ff7ab9a77..5f98e34d6 100644 --- a/cypress/testcases/backupAndSnapshot/vmBackup.spec.ts +++ b/cypress/testcases/backupAndSnapshot/vmBackup.spec.ts @@ -49,7 +49,7 @@ describe('VM Backup Validation', () => { createVMBackupSuccess = true }) - it('Resotre New VM from vm backup', () => { + it('Restore new VM from vm backup', () => { onlyOn(createVMBackupSuccess); const newVMName = 'create-new-from-backup'; @@ -63,7 +63,7 @@ describe('VM Backup Validation', () => { vms.deleteVMFromStore(`default/${newVMName}`); }) - it('Resotre New VM in another namespace from vm backup', () => { + it('Restore New VM in another namespace from vm backup', () => { onlyOn(createVMBackupSuccess); const newVMName = 'create-new-from-backup'; @@ -77,7 +77,7 @@ describe('VM Backup Validation', () => { vms.deleteVMFromStore(`default/${newVMName}`); }) - it('Resotre Existing VM from vm backup', () => { + it('Restore Existing VM from vm backup', () => { onlyOn(createVMBackupSuccess); vms.goToList(); @@ -91,7 +91,7 @@ describe('VM Backup Validation', () => { vms.deleteVMFromStore(`default/test`); }) - it('delete backup', () => { + it('Delete backup', () => { onlyOn(createVMBackupSuccess); vmBackups.goToList(); diff --git a/cypress/testcases/backupAndSnapshot/vmSnapshot.spec.ts b/cypress/testcases/backupAndSnapshot/vmSnapshot.spec.ts index d400c6c40..d3e443ef5 100644 --- a/cypress/testcases/backupAndSnapshot/vmSnapshot.spec.ts +++ b/cypress/testcases/backupAndSnapshot/vmSnapshot.spec.ts @@ -15,7 +15,7 @@ describe('VM snapshot Form Validation', () => { cy.login({url: PageUrl.virtualMachine}); }); - it('Take a vm snaphost from vm', () => { + it('Take a vm snapshot from vm', () => { // Create a vm to test the snapshot operation const namespace = 'default'; @@ -47,7 +47,7 @@ describe('VM snapshot Form Validation', () => { createVMSnapshotSuccess = true }) - it('Resotre New VM from vm snapshot', () => { + it('Restore New VM from vm snapshot', () => { onlyOn(createVMSnapshotSuccess); const newVMName = 'create-new-from-snapshot'; @@ -61,7 +61,7 @@ describe('VM snapshot Form Validation', () => { vms.deleteVMFromStore(`default/${newVMName}`); }) - it('Resotre Existing VM from vm snapshot', () => { + it('Restore Existing VM from vm snapshot', () => { onlyOn(createVMSnapshotSuccess); vms.goToList(); diff --git a/cypress/testcases/backupAndSnapshot/volumeSnapshot.spec.ts b/cypress/testcases/backupAndSnapshot/volumeSnapshot.spec.ts index 19cf4bc26..dcc7136cd 100644 --- a/cypress/testcases/backupAndSnapshot/volumeSnapshot.spec.ts +++ b/cypress/testcases/backupAndSnapshot/volumeSnapshot.spec.ts @@ -43,7 +43,7 @@ describe('Validation volume snapshot', () => { createVolumeSnapshotSuccess = true }) - it('Resotre New volume from volume snapshot', () => { + it('Restore New volume from volume snapshot', () => { onlyOn(createVolumeSnapshotSuccess); const newName = 'create-new-from-snapshot'; diff --git a/cypress/testcases/dashboard/0_FirstTimeLogin.spec.ts b/cypress/testcases/dashboard/0_FirstTimeLogin.spec.ts index 07db03f89..819e32fa4 100644 --- a/cypress/testcases/dashboard/0_FirstTimeLogin.spec.ts +++ b/cypress/testcases/dashboard/0_FirstTimeLogin.spec.ts @@ -37,7 +37,7 @@ describe("First Time Login Page", () => { }); context("Set Password", () => { - specify("Password inconsistant", () => { + specify("Password inconsistent", () => { onlyOn(isFirstTimeLogin); const page = new LoginPage(); page.visit(); @@ -52,7 +52,7 @@ describe("First Time Login Page", () => { }); - specify("Password consistant", () => { + specify("Password consistent", () => { onlyOn(isFirstTimeLogin); const page = new LoginPage(); page.visit(); diff --git a/cypress/testcases/dashboard/support.spec.ts b/cypress/testcases/dashboard/support.spec.ts index 5d665633d..96b249647 100644 --- a/cypress/testcases/dashboard/support.spec.ts +++ b/cypress/testcases/dashboard/support.spec.ts @@ -38,7 +38,7 @@ describe("Support Page", () => { }) }) - context('Generate Support Bundle', () => { + context.only('Generate Support Bundle', () => { it('is required to input Description', () => { page.generateSupportBundleBtn.click() diff --git a/cypress/testcases/virtualmachines/virtual-machine.spec.ts b/cypress/testcases/virtualmachines/virtual-machine.spec.ts index bca05a256..b41148e26 100644 --- a/cypress/testcases/virtualmachines/virtual-machine.spec.ts +++ b/cypress/testcases/virtualmachines/virtual-machine.spec.ts @@ -166,7 +166,7 @@ describe('VM runStategy Validation (Halted)', () => { const namespace = 'default' - it('Craete VM use Halted (Run Strategy)', () => { + it('Create VM use Halted (Run Strategy)', () => { vms.goToCreate(); const imageEnv = Cypress.env('image');