We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4465b86 commit 0490762Copy full SHA for 0490762
aws-distro-opentelemetry-node-autoinstrumentation/test/otlp-aws-span-exporter.test.ts
@@ -19,10 +19,8 @@ const EXPECTED_AUTH_SECURITY_TOKEN = 'test_token';
19
20
const nodeVersion = getNodeVersion();
21
22
-/* istanbul ignore else */
23
-if (nodeVersion < 16) {
24
- it.skip(`Skipping tests - Node.js version ${nodeVersion} is below required version 16`, () => {});
25
-} else {
+/* istanbul ignore next */
+if (nodeVersion >= 16) {
26
describe('OTLPAwsSpanExporter', () => {
27
let sandbox: sinon.SinonSandbox;
28
let scope: nock.Scope;
0 commit comments