-
Notifications
You must be signed in to change notification settings - Fork 227
/
files.mjs
33 lines (31 loc) · 1.04 KB
/
files.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
export const sources = [
'lib/_stream_.+',
'lib/internal/streams/.+',
'lib/internal/validators.js',
'lib/stream.js',
'lib/stream/promises.js',
'test/common/fixtures.js',
'test/common/fixtures.mjs',
'test/common/index.js',
'test/common/index.mjs',
'test/common/tmpdir.js',
'test/fixtures/[^/]+.txt',
'test/parallel/test-readable.+',
'test/parallel/test-stream.+'
]
export const skippedSources = [
'lib/_stream_wrap.js',
'test/parallel/test-stream-consumers.js',
'test/parallel/test-stream-destroy.js',
'test/parallel/test-stream-duplex.js',
'test/parallel/test-stream-readable-strategy-option.js',
'test/parallel/test-stream-map.js',
'test/parallel/test-stream-pipeline.js',
'test/parallel/test-stream-readable-async-iterators.js',
'test/parallel/test-stream-wrap-drain.js',
'test/parallel/test-stream-wrap-encoding.js',
'test/parallel/test-stream-wrap.js',
'test/parallel/test-stream-toWeb-allows-server-response.js',
'test/parallel/test-readable-from-web-enqueue-then-close.js'
]
export const aliases = {}