-
Notifications
You must be signed in to change notification settings - Fork 406
Expand file tree
/
Copy pathstartup-test.js
More file actions
82 lines (80 loc) · 1.69 KB
/
Copy pathstartup-test.js
File metadata and controls
82 lines (80 loc) · 1.69 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
'use strict'
if (Number(process.env.USE_TRACER)) {
require('../../..').init()
}
if (Number(process.env.EVERYTHING)) {
// TODO: Add a preparation step that installs these dependencies. That way we
// are independent from what is currently installed in case a dependency is
// removed.
const packages = [
'@babel/helpers',
'@datadog/libdatadog',
'@datadog/native-appsec',
'@datadog/native-iast-taint-tracking',
'@datadog/native-metrics',
'@datadog/pprof',
'@datadog/sketches-js',
'@datadog/wasm-js-rewriter',
'@eslint/eslintrc',
'@eslint/js',
'@isaacs/ttlcache',
'@msgpack/msgpack',
'@opentelemetry/api',
'@opentelemetry/core',
'@stylistic/eslint-plugin',
'axios',
'benchmark',
'body-parser',
'crypto-randomuuid',
'dc-polyfill',
'eslint-plugin-cypress',
'eslint-plugin-import',
'eslint-plugin-mocha',
'eslint-plugin-n',
'eslint-plugin-promise',
'eslint-plugin-unicorn',
'eslint',
'express',
'glob',
'globals',
'graphql',
'ignore',
'import-in-the-middle',
'istanbul-lib-coverage',
'jest-docblock',
'jsonpath-plus',
'jszip',
'limiter',
'lodash.sortby',
'lru-cache',
'mocha',
'module-details-from-path',
'multer',
'mutexify',
'nock',
'nyc',
'octokit',
'opentracing',
'path-to-regexp',
'pprof-format',
'protobufjs',
'proxyquire',
'retry',
'rfdc',
'semifies',
'semver',
'shell-quote',
'sinon',
'source-map',
'tap',
'tiktoken',
'tlhunter-sorted-set',
'ttl-set',
'workerpool',
'yaml',
'yarn-deduplicate'
]
for (const pkg of packages) {
require(pkg)
}
}