-
Notifications
You must be signed in to change notification settings - Fork 16
tests: make sure that all traces are being sent #391
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
d4849cb
to
cc04d8f
Compare
cc04d8f
to
335362f
Compare
37ad5b4
to
428b7a4
Compare
import { Before } from "@cucumber/cucumber"; | ||
import { Before, AfterAll } from "@cucumber/cucumber"; | ||
import { ITestCaseHookParameter } from "@cucumber/cucumber/lib/support_code_library_builder/types"; | ||
import log from "loglevel"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import log from "loglevel"; | |
import log from "loglevel"; | |
const logger = log.getLogger("testing") |
console.log("\nTest reports:\n") | ||
console.log("* View test APM traces and detailed time reports on Datadog (can take a few minutes to become available):") | ||
console.log(`* https://app.datadoghq.com/ci/test-runs?query=%40test.service%3A${dd_service}%20%40ci.pipeline.id%3A${ci_pipeline_id}&index=citest\n`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
console.log("\nTest reports:\n") | |
console.log("* View test APM traces and detailed time reports on Datadog (can take a few minutes to become available):") | |
console.log(`* https://app.datadoghq.com/ci/test-runs?query=%40test.service%3A${dd_service}%20%40ci.pipeline.id%3A${ci_pipeline_id}&index=citest\n`) | |
logger.info("\nTest reports:\n") | |
logger.info("* View test APM traces and detailed time reports on Datadog (can take a few minutes to become available):") | |
logger.info(`* https://app.datadoghq.com/ci/test-runs?query=%40test.service%3A${dd_service}%20%40ci.pipeline.id%3A${ci_pipeline_id}&index=citest\n`) |
This issue has been automatically marked as stale because it has not had activity in the last 30 days. |
😳