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 3c990c5 commit a5bdaa8Copy full SHA for a5bdaa8
packages/devtools-proxy-support/src/fetch.spec.ts
@@ -4,6 +4,11 @@ import { HTTPServerProxyTestSetup } from '../test/helpers';
4
5
describe('createFetch', function () {
6
it("consistency check: plain `import('node-fetch')` fails", async function () {
7
+ if (process.versions.node >= '20.19.0') {
8
+ // 'node 20.19.0 has require(esm) enabled by default'
9
+ return this.skip();
10
+ }
11
+
12
let failed = false;
13
try {
14
await import('node-fetch');
0 commit comments