Skip to content

Commit

Permalink
Make it easier to see which test type that is used (#4339)
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore authored Dec 17, 2024
1 parent 48f3381 commit 70a0c5c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/plugins/compare/pug/index.pug
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ p

h2 Settings
p
| The test conducted in this comparison is the #{compare.meta.testOptions.testType} test. The alternative hypothesis used for this test is "#{compare.meta.testOptions.alternative}".
| The test conducted in this comparison is the
b #{compare.meta.testOptions.testType}
| test. The alternative hypothesis used for this test is
b "#{compare.meta.testOptions.alternative}"
| .
if compare.meta.testOptions.alternative === 'less'
| This means that we test if the current test is significant less that the baseline tests.
else if compare.meta.testOptions.alternative === 'greater'
Expand Down

0 comments on commit 70a0c5c

Please sign in to comment.