2016-01-19 16:12:03 +05:30
|
|
|
Feature: Project Builds Summary
|
|
|
|
Background:
|
|
|
|
Given I sign in as a user
|
|
|
|
And I own a project
|
|
|
|
And project has CI enabled
|
2016-06-02 11:05:42 +05:30
|
|
|
And project has coverage enabled
|
2016-01-19 16:12:03 +05:30
|
|
|
And project has a recent build
|
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
Scenario: I browse build details page
|
|
|
|
When I visit recent build details page
|
|
|
|
Then I see details of a build
|
2016-01-19 16:12:03 +05:30
|
|
|
And I see build trace
|
2016-04-02 18:10:28 +05:30
|
|
|
|
|
|
|
Scenario: I browse project builds page
|
|
|
|
When I visit project builds page
|
2016-06-02 11:05:42 +05:30
|
|
|
Then I see coverage
|
2016-04-02 18:10:28 +05:30
|
|
|
Then I see button to CI Lint
|
|
|
|
|
|
|
|
Scenario: I erase a build
|
|
|
|
Given recent build is successful
|
|
|
|
And recent build has a build trace
|
|
|
|
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
|
|
|
|
And recent build summary contains information saying that build has been erased
|
2016-06-16 23:09:34 +05:30
|
|
|
And the build count cache is updated
|