Skip to content

Commit

Permalink
change groupname to group in seed data
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorCapCoder committed Oct 20, 2023
1 parent 906f7f5 commit c5272ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/group/showGroupsAndClassesInTable.feature
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ Feature: Group - To show groups and classes in one table with respective functio
Scenario: As a teacher i can see all classes and groups of my school on the new class administration page.
Given I see the new class administration page
Then I can see the page title
And I can see the group 'TestSchulklasse' with source 'moin.schule'
And I can see the group 'Cypress-Test-Group' with source 'moin.schule'
And I can see the class '1' without source
And the group 'TestSchulklasse' does not have any action items
And the group 'Cypress-Test-Group' does not have any action items
And the class '1' has 4 enabled action items

@stable_test
Expand Down
4 changes: 2 additions & 2 deletions cypress/support/pages/group/pageGroups.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict'

class Groups {
static #cretaeClass = '[data-testid="createClass"]';
static #createClass = '[data-testid="createClass"]';
static #confirmClassCreate = '[data-testid="confirmClassCreate"]';
static #manageConfirm = '[data-testid="manage-confirm"]';
static #classTitleNew = '[data-testid="admin-class-title"]';
Expand All @@ -16,7 +16,7 @@ class Groups {
static #deleteDialogConfirm = '[data-testid="dialog-confirm"]';

clickCreateClass() {
cy.get(Groups.#cretaeClass)
cy.get(Groups.#createClass)
.click();
}

Expand Down

0 comments on commit c5272ca

Please sign in to comment.