Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable cucumber message in eclipse

How to disable this message:

┌───────────────────────────────────────────────────────────────────────────────────┐
│ Share your Cucumber Report with your team at https://reports.cucumber.io          │
│ Activate publishing with one of the following:                                    │
│                                                                                   │
│ src/test/resources/cucumber.properties:          cucumber.publish.enabled=true    │
│ src/test/resources/junit-platform.properties:    cucumber.publish.enabled=true    │
│ Environment variable:                            CUCUMBER_PUBLISH_ENABLED=true    │
│ JUnit:                                           @CucumberOptions(publish = true) │
│                                                                                   │
│ More information at https://reports.cucumber.io/docs/cucumber-jvm                 │
│                                                                                   │
│ Disable this message with one of the following:                                   │
│                                                                                   │
│ src/test/resources/cucumber.properties:          cucumber.publish.quiet=true      │
│ src/test/resources/junit-platform.properties:    cucumber.publish.quiet=true      │
└───────────────────────────────────────────────────────────────────────────────────┘

Click here

What steps to take?

like image 577
DThomas221 Avatar asked Nov 06 '22 04:11

DThomas221


1 Answers

In the message it is saying as below:

Disable this message with one of the following:

  • src/test/resources/cucumber.properties: cucumber.publish.quiet=true
  • src/test/resources/junit-platform.properties: cucumber.publish.quiet=true

For me it was disabled after doing both of the above

like image 112
Albin Avatar answered Nov 14 '22 08:11

Albin