mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
9 lines
345 B
JavaScript
9 lines
345 B
JavaScript
|
|
// Test --test --watch --test-isolation=none runs tests with ESM dependency
|
||
|
|
import '../common/index.mjs';
|
||
|
|
import { skipIfNoWatch, refreshForTestRunnerWatch, testRunnerWatch } from '../common/watch.js';
|
||
|
|
|
||
|
|
skipIfNoWatch();
|
||
|
|
refreshForTestRunnerWatch();
|
||
|
|
|
||
|
|
await testRunnerWatch({ file: 'test.js', fileToUpdate: 'dependency.mjs', isolation: 'none' });
|