Skip to content

Commit

Permalink
Missing cypress plugin messages
Browse files Browse the repository at this point in the history
  • Loading branch information
iunanua committed Nov 29, 2024
1 parent 1c253ec commit 5b14d57
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/datadog-plugin-cypress/src/cypress-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ class CypressPlugin {
this.libraryConfigurationPromise = getLibraryConfiguration(this.tracer, this.testConfiguration)
.then((libraryConfigurationResponse) => {
if (libraryConfigurationResponse.err) {
log.error(libraryConfigurationResponse.err)
log.error('Cypress plugin library config response error', libraryConfigurationResponse.err)
} else {
const {
libraryConfig: {
Expand Down Expand Up @@ -360,7 +360,7 @@ class CypressPlugin {
this.testConfiguration
)
if (knownTestsResponse.err) {
log.error(knownTestsResponse.err)
log.error('Cypress known tests response error', knownTestsResponse.err)
this.isEarlyFlakeDetectionEnabled = false
} else {
// We use TEST_FRAMEWORK_NAME for the name of the module
Expand All @@ -374,7 +374,7 @@ class CypressPlugin {
this.testConfiguration
)
if (skippableTestsResponse.err) {
log.error(skippableTestsResponse.err)
log.error('Cypress skippable tests response error', skippableTestsResponse.err)
} else {
const { skippableTests, correlationId } = skippableTestsResponse
this.testsToSkip = skippableTests || []
Expand Down

0 comments on commit 5b14d57

Please sign in to comment.