Skip to content

Commit 0490762

Browse files
committed
removed it.skip() test
1 parent 4465b86 commit 0490762

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

aws-distro-opentelemetry-node-autoinstrumentation/test/otlp-aws-span-exporter.test.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,8 @@ const EXPECTED_AUTH_SECURITY_TOKEN = 'test_token';
1919

2020
const nodeVersion = getNodeVersion();
2121

22-
/* istanbul ignore else */
23-
if (nodeVersion < 16) {
24-
it.skip(`Skipping tests - Node.js version ${nodeVersion} is below required version 16`, () => {});
25-
} else {
22+
/* istanbul ignore next */
23+
if (nodeVersion >= 16) {
2624
describe('OTLPAwsSpanExporter', () => {
2725
let sandbox: sinon.SinonSandbox;
2826
let scope: nock.Scope;

0 commit comments

Comments
 (0)