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 4f339b5 commit 1b797fbCopy full SHA for 1b797fb
test/parallel/test-http2-respond-file-compat.js
@@ -5,8 +5,9 @@ if (!common.hasCrypto)
5
common.skip('missing crypto');
6
const http2 = require('http2');
7
const path = require('path');
8
+const fixtures = require('../common/fixtures')
9
-const fname = path.resolve(common.fixturesDir, 'elipses.txt');
10
+const fname = fixtures.path('elipses.txt');
11
12
const server = http2.createServer(common.mustCall((request, response) => {
13
response.stream.respondWithFile(fname);
0 commit comments