summaryrefslogtreecommitdiff
path: root/features/project/builds/summary.feature
blob: 3bf15b0cf875defe478786745b9980a0f323beb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Feature: Project Builds Summary
  Background:
    Given I sign in as a user
    And I own a project
    And project has CI enabled
    And project has coverage enabled
    And project has a recent build

  @javascript
  Scenario: I browse build details page
    When I visit recent build details page
    Then I see details of a build
    And I see build trace

  @javascript
  Scenario: I browse project builds page
    When I visit project builds page
    Then I see coverage
    Then I see button to CI Lint

  @javascript
  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
    And the build count cache is updated