aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app/app_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard/app/app_test.go')
-rw-r--r--dashboard/app/app_test.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/dashboard/app/app_test.go b/dashboard/app/app_test.go
index 96861dfa5..cfabcc473 100644
--- a/dashboard/app/app_test.go
+++ b/dashboard/app/app_test.go
@@ -650,6 +650,12 @@ var testConfig = &GlobalConfig{
DailyLimit: 1000,
Config: &TestConfig{Index: 1},
Embargo: 4 * 24 * time.Hour,
+ Filter: func(bug *Bug) FilterResult {
+ if bug.Title == "skip reporting1" {
+ return FilterSkip
+ }
+ return FilterReport
+ },
},
{
Name: "reporting2",