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 ab65fe2 commit b6f65cdCopy full SHA for b6f65cd
1 file changed
dev-packages/node-integration-tests/utils/runner.ts
@@ -777,7 +777,7 @@ function log(...args: unknown[]): void {
777
* targets the wrong SDK instance.
778
*/
779
function buildAutoFlushFlags(existingFlags: readonly string[]): string[] {
780
- const isEsm = existingFlags.some(flag => flag === '--import' || flag.startsWith('--import='));
+ const isEsm = existingFlags.some(flag => flag.startsWith('--import='));
781
if (isEsm) {
782
return ['--import', join(__dirname, 'auto-flush.mjs')];
783
}
0 commit comments