diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/integration/repo_commits_test.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/integration/repo_commits_test.go b/tests/integration/repo_commits_test.go index e74e3867f4..57ecc4da5f 100644 --- a/tests/integration/repo_commits_test.go +++ b/tests/integration/repo_commits_test.go @@ -110,7 +110,7 @@ func testRepoCommitsWithStatus(t *testing.T, resp, respOne *httptest.ResponseRec } func TestRepoCommitsWithStatusPending(t *testing.T) { - doTestRepoCommitWithStatus(t, "pending", "octicon-dot-fill", "yellow") + doTestRepoCommitWithStatus(t, "pending", "octicon-dot-fill", "grey") } func TestRepoCommitsWithStatusSuccess(t *testing.T) { @@ -129,6 +129,10 @@ func TestRepoCommitsWithStatusWarning(t *testing.T) { doTestRepoCommitWithStatus(t, "warning", "gitea-exclamation", "yellow") } +func TestRepoCommitsWithStatusRunning(t *testing.T) { + doTestRepoCommitWithStatus(t, "running", "octicon-dot-fill", "yellow") +} + func TestRepoCommitsStatusParallel(t *testing.T) { defer tests.PrepareTestEnv(t)() |