如何禁用此消息:
┌───────────────────────────────────────────────────────────────────────────────────┐
│ 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 │
└───────────────────────────────────────────────────────────────────────────────────┘
应采取哪些步骤?
5条答案
按热度按时间idfiyjo81#
电文如下:
使用以下方法之一禁用此消息:
对我来说,它是禁用后,做了上述两个
mutmk8jj2#
在cucumber.propertiesrc/test/resources/下创建一个新的www.example.com文件,然后添加这一行cubber.publish.quiet:true
xpcnnkqh3#
我在这里遇到了同样的问题,我按照消息中的步骤解决了它:
1.在包资源管理器的“src/test/resources”中创建cucumber.properties and junit-platform.properties;
1.在每一个中添加一行“cubber.publish.quiet=true”。
ehxuflar4#
有时候resources文件夹在eclipse上默认情况下可能不存在,那么您需要在src/test下创建一个名为“resources”的文件夹,然后在该文件夹下创建两个名为“cucumber.properties”和“junit-platform.properties”的子文件夹,并在. cucumber.publish.quiet=true下添加该声明
xzv2uavs5#
用于禁用控制台中的cubble发布消息reference for console Message。
在src/test/resources文件路径中创建一个名为"www.example.com"的文件(默认情况下,当我们在eclipse中创建一个新项目时会创建该文件),在属性文件中提到
cucumber.publish.quite=true
,这样您就不会在控制台中看到 cucumber 内容了。cucumber.properties" in src/test/resources file path(which by default gets created when we create a new project in eclipse). Mentioncucumber.publish.quite=true
in the properties file. That's it now you won't see that cucumber content in the console.reference image.