Skip to content

Commit

Permalink
fix (tests): set NodeJS version to 16 (#359)
Browse files Browse the repository at this point in the history
  • Loading branch information
AleF83 authored Oct 12, 2022
1 parent b9c33b0 commit b282dfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/tests/e2e/basic/metrics.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,6 @@ describe('Metrics', () => {
const sampleMetric = metrics.find(m => m.startsWith('nodejs_version_info'));
expect(sampleMetric).toBeDefined();
const majorVersion = /major="(\d+)"/g.exec(sampleMetric!);
expect(majorVersion?.[1]).toEqual('14');
expect(majorVersion?.[1]).toEqual('16');
});
});

0 comments on commit b282dfa

Please sign in to comment.