Skip to content

Commit fd18de2

Browse files
authored
chore(undici): fix opentelemetry tests using undici (#3761)
1 parent 6ceb2e3 commit fd18de2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

test/opentelemetry-metrics/fixtures.test.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,13 @@ if (!semver.satisfies(process.version, '>=14')) {
3939
process.exit();
4040
}
4141

42-
const undici = require('undici'); // import after we've excluded node <14
42+
const isUndiciIncompat = require('../_is_undici_incompat')();
43+
if (isUndiciIncompat) {
44+
console.log(`# SKIP ${isUndiciIncompat}`);
45+
process.exit();
46+
}
47+
48+
const undici = require('undici'); // import after we've checked compatibility
4349

4450
const fixturesDir = path.join(__dirname, 'fixtures');
4551

0 commit comments

Comments
 (0)