Skip to content

Commit

Permalink
task-system-done
Browse files Browse the repository at this point in the history
  • Loading branch information
yacekmm committed Aug 25, 2024
1 parent 9c25ac1 commit ecc1670
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,15 @@ void tearDown() {

@Test
void createsConcert() {
String concertTitle = "GUI test concert " + LocalDateTime.now();

//TODO using concertOperations test happy path of core scenario: creating concert and listing it

concertOperations
.openCreateConcertView()
.createConcert(concertTitle, 2, 10)
.assertCreationSuccess()
.openConcertListView()
.assertNewConcertIsListed(concertTitle, 2, 10);
}

}

0 comments on commit ecc1670

Please sign in to comment.