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 f8f7bb6 commit 1b24faaCopy full SHA for 1b24faa
packages/node/test/manual/fastify-scope-separation/start.js
@@ -1,3 +1,9 @@
1
+if (parseInt(process.env.NODE_MAJOR) < 14) {
2
+ console.log(colorize('SKIPPED: Fastify tests are skipped in Node < 14\n', 'yellow'));
3
+ app.close();
4
+ process.exit(0);
5
+}
6
+
7
const http = require('http');
8
const fastify = require('fastify');
9
const app = fastify();
0 commit comments