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 81f16a9 commit f7c0870Copy full SHA for f7c0870
test/parallel/test-http2-compat-serverrequest-pipe.js
@@ -4,14 +4,15 @@
4
const common = require('../common');
5
if (!common.hasCrypto)
6
common.skip('missing crypto');
7
+const fixtures = require('../common/fixtures');
8
const assert = require('assert');
9
const http2 = require('http2');
10
const fs = require('fs');
11
const path = require('path');
12
13
// piping should work as expected with createWriteStream
14
-const loc = path.join(common.fixturesDir, 'person.jpg');
15
+const loc = fixtures.path('person.jpg');
16
const fn = path.join(common.tmpDir, 'http2pipe.jpg');
17
common.refreshTmpDir();
18
0 commit comments