Skip to content

Commit

Permalink
Disable metrics.spec.js tests (part of tracing tests) for windows (#3250
Browse files Browse the repository at this point in the history
)
  • Loading branch information
juan-fernandez authored and nsavoire committed Jun 21, 2023
1 parent 43d20de commit f773c06
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/dd-trace/test/metrics.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

require('./setup/tap')

describe('metrics', () => {
const os = require('os')

const isWindows = os.platform() === 'win32'

const suiteDescribe = isWindows ? describe.skip : describe

suiteDescribe('metrics', () => {
let metrics
let config
let clock
Expand Down

0 comments on commit f773c06

Please sign in to comment.