wrangler 2.0.12 → 2.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (149) hide show
  1. package/README.md +7 -1
  2. package/bin/wrangler.js +111 -57
  3. package/miniflare-dist/index.mjs +9 -2
  4. package/package.json +156 -154
  5. package/src/__tests__/config-cache-without-cache-dir.test.ts +38 -0
  6. package/src/__tests__/config-cache.test.ts +30 -24
  7. package/src/__tests__/configuration.test.ts +3935 -3476
  8. package/src/__tests__/dev.test.tsx +1128 -979
  9. package/src/__tests__/guess-worker-format.test.ts +68 -68
  10. package/src/__tests__/helpers/cmd-shim.d.ts +6 -6
  11. package/src/__tests__/helpers/faye-websocket.d.ts +4 -4
  12. package/src/__tests__/helpers/mock-account-id.ts +24 -24
  13. package/src/__tests__/helpers/mock-bin.ts +20 -20
  14. package/src/__tests__/helpers/mock-cfetch.ts +92 -92
  15. package/src/__tests__/helpers/mock-console.ts +49 -39
  16. package/src/__tests__/helpers/mock-dialogs.ts +94 -71
  17. package/src/__tests__/helpers/mock-http-server.ts +30 -30
  18. package/src/__tests__/helpers/mock-istty.ts +65 -18
  19. package/src/__tests__/helpers/mock-kv.ts +26 -26
  20. package/src/__tests__/helpers/mock-oauth-flow.ts +223 -228
  21. package/src/__tests__/helpers/mock-process.ts +39 -0
  22. package/src/__tests__/helpers/mock-stdin.ts +82 -77
  23. package/src/__tests__/helpers/mock-web-socket.ts +21 -21
  24. package/src/__tests__/helpers/run-in-tmp.ts +27 -27
  25. package/src/__tests__/helpers/run-wrangler.ts +8 -8
  26. package/src/__tests__/helpers/write-worker-source.ts +16 -16
  27. package/src/__tests__/helpers/write-wrangler-toml.ts +9 -9
  28. package/src/__tests__/https-options.test.ts +104 -104
  29. package/src/__tests__/index.test.ts +239 -234
  30. package/src/__tests__/init.test.ts +1605 -1250
  31. package/src/__tests__/jest.setup.ts +63 -33
  32. package/src/__tests__/kv.test.ts +1128 -1011
  33. package/src/__tests__/logger.test.ts +100 -74
  34. package/src/__tests__/package-manager.test.ts +303 -303
  35. package/src/__tests__/pages.test.ts +1152 -652
  36. package/src/__tests__/parse.test.ts +252 -252
  37. package/src/__tests__/publish.test.ts +6371 -5622
  38. package/src/__tests__/pubsub.test.ts +367 -0
  39. package/src/__tests__/r2.test.ts +133 -133
  40. package/src/__tests__/route.test.ts +18 -18
  41. package/src/__tests__/secret.test.ts +382 -377
  42. package/src/__tests__/tail.test.ts +530 -530
  43. package/src/__tests__/user.test.ts +123 -111
  44. package/src/__tests__/whoami.test.tsx +198 -117
  45. package/src/__tests__/worker-namespace.test.ts +327 -0
  46. package/src/abort.d.ts +1 -1
  47. package/src/api/dev.ts +49 -0
  48. package/src/api/index.ts +1 -0
  49. package/src/bundle-reporter.tsx +29 -0
  50. package/src/bundle.ts +157 -149
  51. package/src/cfetch/index.ts +80 -80
  52. package/src/cfetch/internal.ts +90 -83
  53. package/src/cli.ts +21 -7
  54. package/src/config/config.ts +204 -195
  55. package/src/config/diagnostics.ts +61 -61
  56. package/src/config/environment.ts +390 -357
  57. package/src/config/index.ts +206 -193
  58. package/src/config/validation-helpers.ts +366 -366
  59. package/src/config/validation.ts +1573 -1376
  60. package/src/config-cache.ts +79 -41
  61. package/src/create-worker-preview.ts +206 -136
  62. package/src/create-worker-upload-form.ts +247 -238
  63. package/src/dev/dev-vars.ts +13 -13
  64. package/src/dev/dev.tsx +329 -307
  65. package/src/dev/local.tsx +304 -275
  66. package/src/dev/remote.tsx +366 -224
  67. package/src/dev/use-esbuild.ts +126 -91
  68. package/src/dev.tsx +538 -0
  69. package/src/dialogs.tsx +97 -97
  70. package/src/durable.ts +87 -87
  71. package/src/entry.ts +234 -228
  72. package/src/environment-variables.ts +23 -23
  73. package/src/errors.ts +6 -6
  74. package/src/generate.ts +33 -0
  75. package/src/git-client.ts +42 -0
  76. package/src/https-options.ts +79 -79
  77. package/src/index.tsx +1775 -2763
  78. package/src/init.ts +549 -0
  79. package/src/inspect.ts +593 -593
  80. package/src/intl-polyfill.d.ts +123 -123
  81. package/src/is-interactive.ts +12 -0
  82. package/src/kv.ts +277 -277
  83. package/src/logger.ts +46 -39
  84. package/src/miniflare-cli/enum-keys.ts +8 -8
  85. package/src/miniflare-cli/index.ts +42 -31
  86. package/src/miniflare-cli/request-context.ts +18 -18
  87. package/src/module-collection.ts +212 -212
  88. package/src/open-in-browser.ts +4 -6
  89. package/src/package-manager.ts +123 -123
  90. package/src/pages/build.tsx +202 -0
  91. package/src/pages/constants.ts +7 -0
  92. package/src/pages/deployments.tsx +101 -0
  93. package/src/pages/dev.tsx +964 -0
  94. package/src/pages/functions/buildPlugin.ts +105 -0
  95. package/src/pages/functions/buildWorker.ts +151 -0
  96. package/{pages → src/pages}/functions/filepath-routing.test.ts +113 -113
  97. package/src/pages/functions/filepath-routing.ts +189 -0
  98. package/src/pages/functions/identifiers.ts +78 -0
  99. package/src/pages/functions/routes.ts +151 -0
  100. package/src/pages/index.tsx +84 -0
  101. package/src/pages/projects.tsx +157 -0
  102. package/src/pages/publish.tsx +335 -0
  103. package/src/pages/types.ts +40 -0
  104. package/src/pages/upload.tsx +384 -0
  105. package/src/pages/utils.ts +12 -0
  106. package/src/parse.ts +202 -138
  107. package/src/paths.ts +6 -6
  108. package/src/preview.ts +31 -0
  109. package/src/proxy.ts +400 -402
  110. package/src/publish.ts +667 -621
  111. package/src/pubsub/index.ts +286 -0
  112. package/src/pubsub/pubsub-commands.tsx +577 -0
  113. package/src/r2.ts +19 -19
  114. package/src/selfsigned.d.ts +23 -23
  115. package/src/sites.tsx +271 -225
  116. package/src/tail/filters.ts +108 -108
  117. package/src/tail/index.ts +217 -217
  118. package/src/tail/printing.ts +45 -45
  119. package/src/update-check.ts +11 -11
  120. package/src/user/choose-account.tsx +60 -0
  121. package/src/user/env-vars.ts +46 -0
  122. package/src/user/generate-auth-url.ts +33 -0
  123. package/src/user/generate-random-state.ts +16 -0
  124. package/src/user/index.ts +3 -0
  125. package/src/user/user.tsx +1161 -0
  126. package/src/whoami.tsx +61 -42
  127. package/src/worker-namespace.ts +190 -0
  128. package/src/worker.ts +110 -100
  129. package/src/zones.ts +39 -36
  130. package/templates/checked-fetch.js +17 -0
  131. package/templates/new-worker-scheduled.js +3 -3
  132. package/templates/new-worker-scheduled.ts +15 -15
  133. package/templates/new-worker.js +3 -3
  134. package/templates/new-worker.ts +15 -15
  135. package/templates/no-op-worker.js +10 -0
  136. package/templates/pages-template-plugin.ts +155 -0
  137. package/templates/pages-template-worker.ts +161 -0
  138. package/templates/static-asset-facade.js +31 -31
  139. package/templates/tsconfig.json +95 -95
  140. package/wrangler-dist/cli.js +55383 -54138
  141. package/pages/functions/buildPlugin.ts +0 -105
  142. package/pages/functions/buildWorker.ts +0 -151
  143. package/pages/functions/filepath-routing.ts +0 -189
  144. package/pages/functions/identifiers.ts +0 -78
  145. package/pages/functions/routes.ts +0 -156
  146. package/pages/functions/template-plugin.ts +0 -147
  147. package/pages/functions/template-worker.ts +0 -143
  148. package/src/pages.tsx +0 -2093
  149. package/src/user.tsx +0 -1214
@@ -4,350 +4,350 @@ import { mockConsoleMethods } from "./helpers/mock-console";
4
4
  import { runInTempDir } from "./helpers/run-in-tmp";
5
5
 
6
6
  const { getPackageManager, getPackageManagerName } =
7
- jest.requireActual("../package-manager");
7
+ jest.requireActual("../package-manager");
8
8
  interface TestCase {
9
- npm: boolean;
10
- pnpm: boolean;
11
- yarn: boolean;
12
- npmLockFile: boolean;
13
- yarnLockFile: boolean;
14
- pnpmLockFile: boolean;
15
- expectedPackageManager: string;
9
+ npm: boolean;
10
+ pnpm: boolean;
11
+ yarn: boolean;
12
+ npmLockFile: boolean;
13
+ yarnLockFile: boolean;
14
+ pnpmLockFile: boolean;
15
+ expectedPackageManager: string;
16
16
  }
17
17
 
18
18
  const testCases: TestCase[] = [
19
- // npm binary only
20
- {
21
- npm: true,
22
- yarn: false,
23
- pnpm: false,
24
- npmLockFile: false,
25
- yarnLockFile: false,
26
- pnpmLockFile: false,
27
- expectedPackageManager: "npm",
28
- },
29
- {
30
- npm: true,
31
- yarn: false,
32
- pnpm: false,
33
- npmLockFile: true,
34
- yarnLockFile: false,
35
- pnpmLockFile: false,
36
- expectedPackageManager: "npm",
37
- },
38
- {
39
- npm: true,
40
- yarn: false,
41
- pnpm: false,
42
- npmLockFile: false,
43
- yarnLockFile: true,
44
- pnpmLockFile: false,
45
- expectedPackageManager: "npm",
46
- },
47
- {
48
- npm: true,
49
- yarn: false,
50
- pnpm: false,
51
- npmLockFile: true,
52
- yarnLockFile: true,
53
- pnpmLockFile: false,
54
- expectedPackageManager: "npm",
55
- },
19
+ // npm binary only
20
+ {
21
+ npm: true,
22
+ yarn: false,
23
+ pnpm: false,
24
+ npmLockFile: false,
25
+ yarnLockFile: false,
26
+ pnpmLockFile: false,
27
+ expectedPackageManager: "npm",
28
+ },
29
+ {
30
+ npm: true,
31
+ yarn: false,
32
+ pnpm: false,
33
+ npmLockFile: true,
34
+ yarnLockFile: false,
35
+ pnpmLockFile: false,
36
+ expectedPackageManager: "npm",
37
+ },
38
+ {
39
+ npm: true,
40
+ yarn: false,
41
+ pnpm: false,
42
+ npmLockFile: false,
43
+ yarnLockFile: true,
44
+ pnpmLockFile: false,
45
+ expectedPackageManager: "npm",
46
+ },
47
+ {
48
+ npm: true,
49
+ yarn: false,
50
+ pnpm: false,
51
+ npmLockFile: true,
52
+ yarnLockFile: true,
53
+ pnpmLockFile: false,
54
+ expectedPackageManager: "npm",
55
+ },
56
56
 
57
- // yarn binary only
58
- {
59
- npm: false,
60
- yarn: true,
61
- pnpm: false,
62
- npmLockFile: false,
63
- yarnLockFile: false,
64
- pnpmLockFile: false,
65
- expectedPackageManager: "yarn",
66
- },
67
- {
68
- npm: false,
69
- yarn: true,
70
- pnpm: false,
71
- npmLockFile: true,
72
- yarnLockFile: false,
73
- pnpmLockFile: false,
74
- expectedPackageManager: "yarn",
75
- },
76
- {
77
- npm: false,
78
- yarn: true,
79
- pnpm: false,
80
- npmLockFile: false,
81
- yarnLockFile: true,
82
- pnpmLockFile: false,
83
- expectedPackageManager: "yarn",
84
- },
85
- {
86
- npm: false,
87
- yarn: true,
88
- pnpm: false,
89
- npmLockFile: true,
90
- yarnLockFile: true,
91
- pnpmLockFile: false,
92
- expectedPackageManager: "yarn",
93
- },
57
+ // yarn binary only
58
+ {
59
+ npm: false,
60
+ yarn: true,
61
+ pnpm: false,
62
+ npmLockFile: false,
63
+ yarnLockFile: false,
64
+ pnpmLockFile: false,
65
+ expectedPackageManager: "yarn",
66
+ },
67
+ {
68
+ npm: false,
69
+ yarn: true,
70
+ pnpm: false,
71
+ npmLockFile: true,
72
+ yarnLockFile: false,
73
+ pnpmLockFile: false,
74
+ expectedPackageManager: "yarn",
75
+ },
76
+ {
77
+ npm: false,
78
+ yarn: true,
79
+ pnpm: false,
80
+ npmLockFile: false,
81
+ yarnLockFile: true,
82
+ pnpmLockFile: false,
83
+ expectedPackageManager: "yarn",
84
+ },
85
+ {
86
+ npm: false,
87
+ yarn: true,
88
+ pnpm: false,
89
+ npmLockFile: true,
90
+ yarnLockFile: true,
91
+ pnpmLockFile: false,
92
+ expectedPackageManager: "yarn",
93
+ },
94
94
 
95
- // pnpm binary only
96
- {
97
- npm: false,
98
- yarn: false,
99
- pnpm: true,
100
- npmLockFile: false,
101
- yarnLockFile: false,
102
- pnpmLockFile: true,
103
- expectedPackageManager: "pnpm",
104
- },
105
- {
106
- npm: false,
107
- yarn: false,
108
- pnpm: true,
109
- npmLockFile: true,
110
- yarnLockFile: false,
111
- pnpmLockFile: false,
112
- expectedPackageManager: "pnpm",
113
- },
114
- {
115
- npm: false,
116
- yarn: false,
117
- pnpm: true,
118
- npmLockFile: false,
119
- yarnLockFile: true,
120
- pnpmLockFile: false,
121
- expectedPackageManager: "pnpm",
122
- },
123
- {
124
- npm: false,
125
- yarn: false,
126
- pnpm: true,
127
- npmLockFile: true,
128
- yarnLockFile: true,
129
- pnpmLockFile: true,
130
- expectedPackageManager: "pnpm",
131
- },
95
+ // pnpm binary only
96
+ {
97
+ npm: false,
98
+ yarn: false,
99
+ pnpm: true,
100
+ npmLockFile: false,
101
+ yarnLockFile: false,
102
+ pnpmLockFile: true,
103
+ expectedPackageManager: "pnpm",
104
+ },
105
+ {
106
+ npm: false,
107
+ yarn: false,
108
+ pnpm: true,
109
+ npmLockFile: true,
110
+ yarnLockFile: false,
111
+ pnpmLockFile: false,
112
+ expectedPackageManager: "pnpm",
113
+ },
114
+ {
115
+ npm: false,
116
+ yarn: false,
117
+ pnpm: true,
118
+ npmLockFile: false,
119
+ yarnLockFile: true,
120
+ pnpmLockFile: false,
121
+ expectedPackageManager: "pnpm",
122
+ },
123
+ {
124
+ npm: false,
125
+ yarn: false,
126
+ pnpm: true,
127
+ npmLockFile: true,
128
+ yarnLockFile: true,
129
+ pnpmLockFile: true,
130
+ expectedPackageManager: "pnpm",
131
+ },
132
132
 
133
- // npm and yarn binaries
134
- {
135
- npm: true,
136
- yarn: true,
137
- pnpm: false,
138
- npmLockFile: false,
139
- yarnLockFile: false,
140
- pnpmLockFile: false,
141
- expectedPackageManager: "npm",
142
- },
143
- {
144
- npm: true,
145
- yarn: true,
146
- pnpm: false,
147
- npmLockFile: true,
148
- yarnLockFile: false,
149
- pnpmLockFile: false,
150
- expectedPackageManager: "npm",
151
- },
152
- {
153
- npm: true,
154
- yarn: true,
155
- pnpm: false,
156
- npmLockFile: false,
157
- yarnLockFile: true,
158
- pnpmLockFile: false,
159
- expectedPackageManager: "yarn",
160
- },
161
- {
162
- npm: true,
163
- yarn: true,
164
- pnpm: false,
165
- npmLockFile: true,
166
- yarnLockFile: true,
167
- pnpmLockFile: false,
168
- expectedPackageManager: "npm",
169
- },
170
- // npm, yarn and pnpm binaries
171
- {
172
- npm: true,
173
- yarn: true,
174
- pnpm: true,
175
- npmLockFile: false,
176
- yarnLockFile: false,
177
- pnpmLockFile: false,
178
- expectedPackageManager: "npm",
179
- },
180
- {
181
- npm: true,
182
- yarn: true,
183
- pnpm: true,
184
- npmLockFile: true,
185
- yarnLockFile: false,
186
- pnpmLockFile: false,
187
- expectedPackageManager: "npm",
188
- },
189
- {
190
- npm: true,
191
- yarn: true,
192
- pnpm: true,
193
- npmLockFile: false,
194
- yarnLockFile: true,
195
- pnpmLockFile: false,
196
- expectedPackageManager: "yarn",
197
- },
198
- {
199
- npm: true,
200
- yarn: true,
201
- pnpm: true,
202
- npmLockFile: false,
203
- yarnLockFile: false,
204
- pnpmLockFile: true,
205
- expectedPackageManager: "pnpm",
206
- },
207
- {
208
- npm: true,
209
- yarn: true,
210
- pnpm: true,
211
- npmLockFile: true,
212
- yarnLockFile: true,
213
- pnpmLockFile: true,
214
- expectedPackageManager: "npm",
215
- },
133
+ // npm and yarn binaries
134
+ {
135
+ npm: true,
136
+ yarn: true,
137
+ pnpm: false,
138
+ npmLockFile: false,
139
+ yarnLockFile: false,
140
+ pnpmLockFile: false,
141
+ expectedPackageManager: "npm",
142
+ },
143
+ {
144
+ npm: true,
145
+ yarn: true,
146
+ pnpm: false,
147
+ npmLockFile: true,
148
+ yarnLockFile: false,
149
+ pnpmLockFile: false,
150
+ expectedPackageManager: "npm",
151
+ },
152
+ {
153
+ npm: true,
154
+ yarn: true,
155
+ pnpm: false,
156
+ npmLockFile: false,
157
+ yarnLockFile: true,
158
+ pnpmLockFile: false,
159
+ expectedPackageManager: "yarn",
160
+ },
161
+ {
162
+ npm: true,
163
+ yarn: true,
164
+ pnpm: false,
165
+ npmLockFile: true,
166
+ yarnLockFile: true,
167
+ pnpmLockFile: false,
168
+ expectedPackageManager: "npm",
169
+ },
170
+ // npm, yarn and pnpm binaries
171
+ {
172
+ npm: true,
173
+ yarn: true,
174
+ pnpm: true,
175
+ npmLockFile: false,
176
+ yarnLockFile: false,
177
+ pnpmLockFile: false,
178
+ expectedPackageManager: "npm",
179
+ },
180
+ {
181
+ npm: true,
182
+ yarn: true,
183
+ pnpm: true,
184
+ npmLockFile: true,
185
+ yarnLockFile: false,
186
+ pnpmLockFile: false,
187
+ expectedPackageManager: "npm",
188
+ },
189
+ {
190
+ npm: true,
191
+ yarn: true,
192
+ pnpm: true,
193
+ npmLockFile: false,
194
+ yarnLockFile: true,
195
+ pnpmLockFile: false,
196
+ expectedPackageManager: "yarn",
197
+ },
198
+ {
199
+ npm: true,
200
+ yarn: true,
201
+ pnpm: true,
202
+ npmLockFile: false,
203
+ yarnLockFile: false,
204
+ pnpmLockFile: true,
205
+ expectedPackageManager: "pnpm",
206
+ },
207
+ {
208
+ npm: true,
209
+ yarn: true,
210
+ pnpm: true,
211
+ npmLockFile: true,
212
+ yarnLockFile: true,
213
+ pnpmLockFile: true,
214
+ expectedPackageManager: "npm",
215
+ },
216
216
  ];
217
217
 
218
218
  describe("getPackageManager()", () => {
219
- runInTempDir();
220
- mockConsoleMethods();
219
+ runInTempDir();
220
+ mockConsoleMethods();
221
221
 
222
- describe("no supported package manager", () => {
223
- mockYarn(false);
224
- mockNpm(false);
225
- mockPnpm(false);
222
+ describe("no supported package manager", () => {
223
+ mockYarn(false);
224
+ mockNpm(false);
225
+ mockPnpm(false);
226
226
 
227
- it("should throw an error", async () => {
228
- await expect(() =>
229
- getPackageManager(process.cwd())
230
- ).rejects.toThrowErrorMatchingInlineSnapshot(
231
- `"Unable to find a package manager. Supported managers are: npm, yarn, and pnpm."`
232
- );
233
- });
234
- });
227
+ it("should throw an error", async () => {
228
+ await expect(() =>
229
+ getPackageManager(process.cwd())
230
+ ).rejects.toThrowErrorMatchingInlineSnapshot(
231
+ `"Unable to find a package manager. Supported managers are: npm, yarn, and pnpm."`
232
+ );
233
+ });
234
+ });
235
235
 
236
- for (const {
237
- npm,
238
- yarn,
239
- pnpm,
240
- npmLockFile,
241
- yarnLockFile,
242
- pnpmLockFile,
243
- expectedPackageManager,
244
- } of testCases) {
245
- describe(
246
- getTestCaseDescription(
247
- npm,
248
- yarn,
249
- pnpm,
250
- npmLockFile,
251
- yarnLockFile,
252
- pnpmLockFile
253
- ),
254
- () => {
255
- mockYarn(yarn);
256
- mockNpm(npm);
257
- mockPnpm(pnpm);
258
- mockLockFiles(npmLockFile, yarnLockFile, pnpmLockFile);
236
+ for (const {
237
+ npm,
238
+ yarn,
239
+ pnpm,
240
+ npmLockFile,
241
+ yarnLockFile,
242
+ pnpmLockFile,
243
+ expectedPackageManager,
244
+ } of testCases) {
245
+ describe(
246
+ getTestCaseDescription(
247
+ npm,
248
+ yarn,
249
+ pnpm,
250
+ npmLockFile,
251
+ yarnLockFile,
252
+ pnpmLockFile
253
+ ),
254
+ () => {
255
+ mockYarn(yarn);
256
+ mockNpm(npm);
257
+ mockPnpm(pnpm);
258
+ mockLockFiles(npmLockFile, yarnLockFile, pnpmLockFile);
259
259
 
260
- it(`should return the ${expectedPackageManager} package manager`, async () => {
261
- const actualPackageManager = await getPackageManager(process.cwd());
262
- expect(getPackageManagerName(actualPackageManager)).toEqual(
263
- expectedPackageManager
264
- );
265
- });
266
- }
267
- );
268
- }
260
+ it(`should return the ${expectedPackageManager} package manager`, async () => {
261
+ const actualPackageManager = await getPackageManager(process.cwd());
262
+ expect(getPackageManagerName(actualPackageManager)).toEqual(
263
+ expectedPackageManager
264
+ );
265
+ });
266
+ }
267
+ );
268
+ }
269
269
  });
270
270
 
271
271
  /**
272
272
  * Create a fake yarn binary
273
273
  */
274
274
  function mockYarn(succeed: boolean): void {
275
- let unMock: () => void;
276
- beforeEach(async () => {
277
- unMock = await mockBinary("yarn", `process.exit(${succeed ? 0 : 1})`);
278
- });
279
- afterEach(() => unMock());
275
+ let unMock: () => void;
276
+ beforeEach(async () => {
277
+ unMock = await mockBinary("yarn", `process.exit(${succeed ? 0 : 1})`);
278
+ });
279
+ afterEach(() => unMock());
280
280
  }
281
281
 
282
282
  /**
283
283
  * Create a fake npm binary
284
284
  */
285
285
  function mockNpm(succeed: boolean): void {
286
- let unMock: () => void;
287
- beforeEach(async () => {
288
- unMock = await mockBinary("npm", `process.exit(${succeed ? 0 : 1})`);
289
- });
290
- afterEach(() => unMock());
286
+ let unMock: () => void;
287
+ beforeEach(async () => {
288
+ unMock = await mockBinary("npm", `process.exit(${succeed ? 0 : 1})`);
289
+ });
290
+ afterEach(() => unMock());
291
291
  }
292
292
 
293
293
  /**
294
294
  * Create a fake pnpm binary
295
295
  */
296
296
  function mockPnpm(succeed: boolean): void {
297
- let unMock: () => void;
298
- beforeEach(async () => {
299
- unMock = await mockBinary("pnpm", `process.exit(${succeed ? 0 : 1})`);
300
- });
301
- afterEach(() => unMock());
297
+ let unMock: () => void;
298
+ beforeEach(async () => {
299
+ unMock = await mockBinary("pnpm", `process.exit(${succeed ? 0 : 1})`);
300
+ });
301
+ afterEach(() => unMock());
302
302
  }
303
303
 
304
304
  /**
305
305
  * Create a fake lock files.
306
306
  */
307
307
  function mockLockFiles(
308
- npmLockFile: boolean,
309
- yarnLockFile: boolean,
310
- pnpmLockFile: boolean
308
+ npmLockFile: boolean,
309
+ yarnLockFile: boolean,
310
+ pnpmLockFile: boolean
311
311
  ) {
312
- beforeEach(() => {
313
- if (npmLockFile) {
314
- writeFileSync("package-lock.json", "");
315
- }
316
- if (yarnLockFile) {
317
- writeFileSync("yarn.lock", "");
318
- }
319
- if (pnpmLockFile) {
320
- writeFileSync("pnpm-lock.yaml", "");
321
- }
322
- });
312
+ beforeEach(() => {
313
+ if (npmLockFile) {
314
+ writeFileSync("package-lock.json", "");
315
+ }
316
+ if (yarnLockFile) {
317
+ writeFileSync("yarn.lock", "");
318
+ }
319
+ if (pnpmLockFile) {
320
+ writeFileSync("pnpm-lock.yaml", "");
321
+ }
322
+ });
323
323
  }
324
324
 
325
325
  function getTestCaseDescription(
326
- npm: boolean,
327
- yarn: boolean,
328
- pnpm: boolean,
329
- npmLockFile: boolean,
330
- yarnLockFile: boolean,
331
- pnpmLockFile: boolean
326
+ npm: boolean,
327
+ yarn: boolean,
328
+ pnpm: boolean,
329
+ npmLockFile: boolean,
330
+ yarnLockFile: boolean,
331
+ pnpmLockFile: boolean
332
332
  ): string {
333
- const criteria: string[] = [];
334
- if (npm) {
335
- criteria.push("npm");
336
- }
337
- if (npmLockFile) {
338
- criteria.push("package-lock.json");
339
- }
340
- if (yarn) {
341
- criteria.push("yarn");
342
- }
343
- if (yarnLockFile) {
344
- criteria.push("yarn.lock");
345
- }
346
- if (pnpm) {
347
- criteria.push("pnpm");
348
- }
349
- if (pnpmLockFile) {
350
- criteria.push("pnpm-lock.yaml");
351
- }
352
- return "using " + criteria.join("; ");
333
+ const criteria: string[] = [];
334
+ if (npm) {
335
+ criteria.push("npm");
336
+ }
337
+ if (npmLockFile) {
338
+ criteria.push("package-lock.json");
339
+ }
340
+ if (yarn) {
341
+ criteria.push("yarn");
342
+ }
343
+ if (yarnLockFile) {
344
+ criteria.push("yarn.lock");
345
+ }
346
+ if (pnpm) {
347
+ criteria.push("pnpm");
348
+ }
349
+ if (pnpmLockFile) {
350
+ criteria.push("pnpm-lock.yaml");
351
+ }
352
+ return "using " + criteria.join("; ");
353
353
  }