Skip to content

Commit

Permalink
chore: default only failed suites (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
ASaiAnudeep authored Aug 21, 2024
1 parent 3ce10e6 commit a5e41b7
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/targets/chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ const default_inputs = {
publish: 'test-summary',
include_suites: true,
max_suites: 10,
only_failures: false,
only_failures: true,
include_failure_details: false,
duration: '',
metrics: [
Expand Down
2 changes: 1 addition & 1 deletion src/targets/slack.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ const default_inputs = {
publish: 'test-summary',
include_suites: true,
max_suites: 10,
only_failures: false,
only_failures: true,
include_failure_details: false,
duration: '',
metrics: [
Expand Down
2 changes: 1 addition & 1 deletion src/targets/teams.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ const default_inputs = {
publish: 'test-summary',
include_suites: true,
max_suites: 10,
only_failures: false,
only_failures: true,
include_failure_details: false,
width: '',
duration: '',
Expand Down
3 changes: 2 additions & 1 deletion test/targets.chat.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ describe('targets - chat - performance', () => {
{
"name": "chat",
"inputs": {
"url": "http://localhost:9393/message"
"url": "http://localhost:9393/message",
"only_failures": false
}
}
],
Expand Down
3 changes: 2 additions & 1 deletion test/targets.slack.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,8 @@ describe('targets - slack - performance', () => {
{
"name": "slack",
"inputs": {
"url": "http://localhost:9393/message"
"url": "http://localhost:9393/message",
"only_failures": false
}
}
],
Expand Down
7 changes: 5 additions & 2 deletions test/targets.teams.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,8 @@ describe('targets - teams - performance', () => {
{
"name": "teams",
"inputs": {
"url": "http://localhost:9393/message"
"url": "http://localhost:9393/message",
"only_failures": false
}
}
],
Expand All @@ -282,7 +283,8 @@ describe('targets - teams - performance', () => {
{
"name": "teams",
"inputs": {
"url": "http://localhost:9393/message"
"url": "http://localhost:9393/message",
"only_failures": false
}
}
],
Expand Down Expand Up @@ -382,6 +384,7 @@ describe('targets - teams - performance', () => {
"name": "teams",
"inputs": {
"url": "http://localhost:9393/message",
"only_failures": false,
"metrics": [
{
"name": "Samples",
Expand Down

0 comments on commit a5e41b7

Please sign in to comment.