2016-01-15 07:09:20 -05:00
|
|
|
Feature: Project Builds Summary
|
|
|
|
Background:
|
|
|
|
Given I sign in as a user
|
|
|
|
And I own a project
|
2016-01-15 07:56:43 -05:00
|
|
|
And project has CI enabled
|
2016-02-04 05:08:58 -05:00
|
|
|
And project has coverage enabled
|
2016-01-15 07:56:43 -05:00
|
|
|
And project has a recent build
|
2016-01-15 07:09:20 -05:00
|
|
|
|
2016-01-17 10:57:42 -05:00
|
|
|
Scenario: I browse build details page
|
|
|
|
When I visit recent build details page
|
|
|
|
Then I see details of a build
|
2016-01-15 07:09:20 -05:00
|
|
|
And I see build trace
|
2016-01-17 10:57:42 -05:00
|
|
|
|
|
|
|
Scenario: I browse project builds page
|
|
|
|
When I visit project builds page
|
2016-02-04 05:08:58 -05:00
|
|
|
Then I see coverage
|
2016-01-18 02:12:31 -05:00
|
|
|
Then I see button to CI Lint
|
2016-02-01 08:30:05 -05:00
|
|
|
|
|
|
|
Scenario: I erase a build
|
2016-02-16 03:51:02 -05:00
|
|
|
Given recent build is successful
|
|
|
|
And recent build has a build trace
|
2016-02-01 08:30:05 -05:00
|
|
|
When I visit recent build details page
|
|
|
|
And I click erase build button
|
|
|
|
Then recent build has been erased
|
|
|
|
And recent build summary does not have artifacts widget
|
2016-02-02 06:23:10 -05:00
|
|
|
And recent build summary contains information saying that build has been erased
|
2016-06-01 10:50:32 -04:00
|
|
|
And the build count cache is updated
|