diff --git a/src/testRunner/unittests/tscWatch/emitAndErrorUpdates.ts b/src/testRunner/unittests/tscWatch/emitAndErrorUpdates.ts index ca57ad939b7..65f311ebcd1 100644 --- a/src/testRunner/unittests/tscWatch/emitAndErrorUpdates.ts +++ b/src/testRunner/unittests/tscWatch/emitAndErrorUpdates.ts @@ -45,37 +45,37 @@ namespace ts.tscWatch { function verifyEmitAndErrorUpdates(input: VerifyEmitAndErrorUpdates) { verifyEmitAndErrorUpdatesWorker({ ...input, - subScenario: `with default config/${input.subScenario}`, + subScenario: `default/${input.subScenario}`, configFile: () => input.configFile?.() || config }); verifyEmitAndErrorUpdatesWorker({ ...input, - subScenario: `with default config and --declaration/${input.subScenario}`, + subScenario: `defaultAndD/${input.subScenario}`, configFile: () => changeCompilerOptions(input, { declaration: true }) }); verifyEmitAndErrorUpdatesWorker({ ...input, - subScenario: `config with --isolatedModules/${input.subScenario}`, + subScenario: `isolatedModules/${input.subScenario}`, configFile: () => changeCompilerOptions(input, { isolatedModules: true }) }); verifyEmitAndErrorUpdatesWorker({ ...input, - subScenario: `config with --isolatedModules and --declaration/${input.subScenario}`, + subScenario: `isolatedModulesAndD/${input.subScenario}`, configFile: () => changeCompilerOptions(input, { isolatedModules: true, declaration: true }) }); verifyEmitAndErrorUpdatesWorker({ ...input, - subScenario: `config with --assumeChangesOnlyAffectDirectDependencies/${input.subScenario}`, + subScenario: `assumeChangesOnlyAffectDirectDependencies/${input.subScenario}`, configFile: () => changeCompilerOptions(input, { assumeChangesOnlyAffectDirectDependencies: true }) }); verifyEmitAndErrorUpdatesWorker({ ...input, - subScenario: `config with --assumeChangesOnlyAffectDirectDependencies and --declaration/${input.subScenario}`, + subScenario: `assumeChangesOnlyAffectDirectDependenciesAndD/${input.subScenario}`, configFile: () => changeCompilerOptions(input, { assumeChangesOnlyAffectDirectDependencies: true, declaration: true }) }); } @@ -91,7 +91,7 @@ console.log(b.c.d);` function verifyDeepImportChange(subScenario: string, bFile: File, cFile: File) { verifyEmitAndErrorUpdates({ - subScenario: `deep import changes/${subScenario}`, + subScenario: `deepImportChanges/${subScenario}`, files: () => [aFile, bFile, cFile], changes: [ sys => { @@ -191,7 +191,7 @@ getPoint().c.x;` content: `import "./d";` }; verifyEmitAndErrorUpdates({ - subScenario: "updates errors in file not exporting a deep multilevel import that changes", + subScenario: "file not exporting a deep multilevel import that changes", files: () => [aFile, bFile, cFile, dFile, eFile], changes: [ sys => { diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies/deep-import-changes/updates-errors-when-deep-import-file-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/updates-errors-when-deep-import-file-changes.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies/deep-import-changes/updates-errors-when-deep-import-file-changes.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/updates-errors-when-deep-import-file-changes.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies/deep-import-changes/updates-errors-when-deep-import-through-declaration-file-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/updates-errors-when-deep-import-through-declaration-file-changes.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies/deep-import-changes/updates-errors-when-deep-import-through-declaration-file-changes.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/updates-errors-when-deep-import-through-declaration-file-changes.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies/updates-errors-in-file-not-exporting-a-deep-multilevel-import-that-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/file-not-exporting-a-deep-multilevel-import-that-changes.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies/updates-errors-in-file-not-exporting-a-deep-multilevel-import-that-changes.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/file-not-exporting-a-deep-multilevel-import-that-changes.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies-and---declaration/deep-import-changes/updates-errors-when-deep-import-file-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/updates-errors-when-deep-import-file-changes.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies-and---declaration/deep-import-changes/updates-errors-when-deep-import-file-changes.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/updates-errors-when-deep-import-file-changes.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies-and---declaration/deep-import-changes/updates-errors-when-deep-import-through-declaration-file-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/updates-errors-when-deep-import-through-declaration-file-changes.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies-and---declaration/deep-import-changes/updates-errors-when-deep-import-through-declaration-file-changes.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/updates-errors-when-deep-import-through-declaration-file-changes.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies-and---declaration/updates-errors-in-file-not-exporting-a-deep-multilevel-import-that-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/file-not-exporting-a-deep-multilevel-import-that-changes.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies-and---declaration/updates-errors-in-file-not-exporting-a-deep-multilevel-import-that-changes.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/file-not-exporting-a-deep-multilevel-import-that-changes.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies-and---declaration/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies-and---declaration/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies-and---declaration/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies-and---declaration/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies-and---declaration/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---assumeChangesOnlyAffectDirectDependencies-and---declaration/with-noEmitOnError.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config/deep-import-changes/updates-errors-when-deep-import-file-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/updates-errors-when-deep-import-file-changes.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config/deep-import-changes/updates-errors-when-deep-import-file-changes.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/updates-errors-when-deep-import-file-changes.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config/deep-import-changes/updates-errors-when-deep-import-through-declaration-file-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/updates-errors-when-deep-import-through-declaration-file-changes.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config/deep-import-changes/updates-errors-when-deep-import-through-declaration-file-changes.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/updates-errors-when-deep-import-through-declaration-file-changes.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config/updates-errors-in-file-not-exporting-a-deep-multilevel-import-that-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/file-not-exporting-a-deep-multilevel-import-that-changes.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config/updates-errors-in-file-not-exporting-a-deep-multilevel-import-that-changes.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/file-not-exporting-a-deep-multilevel-import-that-changes.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config/with-noEmitOnError.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config-and---declaration/deep-import-changes/updates-errors-when-deep-import-file-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/updates-errors-when-deep-import-file-changes.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config-and---declaration/deep-import-changes/updates-errors-when-deep-import-file-changes.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/updates-errors-when-deep-import-file-changes.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config-and---declaration/deep-import-changes/updates-errors-when-deep-import-through-declaration-file-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/updates-errors-when-deep-import-through-declaration-file-changes.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config-and---declaration/deep-import-changes/updates-errors-when-deep-import-through-declaration-file-changes.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/updates-errors-when-deep-import-through-declaration-file-changes.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config-and---declaration/updates-errors-in-file-not-exporting-a-deep-multilevel-import-that-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/file-not-exporting-a-deep-multilevel-import-that-changes.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config-and---declaration/updates-errors-in-file-not-exporting-a-deep-multilevel-import-that-changes.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/file-not-exporting-a-deep-multilevel-import-that-changes.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config-and---declaration/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config-and---declaration/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config-and---declaration/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config-and---declaration/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config-and---declaration/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/with-default-config-and---declaration/with-noEmitOnError.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules/deep-import-changes/updates-errors-when-deep-import-file-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/updates-errors-when-deep-import-file-changes.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules/deep-import-changes/updates-errors-when-deep-import-file-changes.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/updates-errors-when-deep-import-file-changes.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules/deep-import-changes/updates-errors-when-deep-import-through-declaration-file-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/updates-errors-when-deep-import-through-declaration-file-changes.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules/deep-import-changes/updates-errors-when-deep-import-through-declaration-file-changes.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/updates-errors-when-deep-import-through-declaration-file-changes.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules/updates-errors-in-file-not-exporting-a-deep-multilevel-import-that-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/file-not-exporting-a-deep-multilevel-import-that-changes.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules/updates-errors-in-file-not-exporting-a-deep-multilevel-import-that-changes.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/file-not-exporting-a-deep-multilevel-import-that-changes.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules/with-noEmitOnError.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules-and---declaration/deep-import-changes/updates-errors-when-deep-import-file-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/updates-errors-when-deep-import-file-changes.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules-and---declaration/deep-import-changes/updates-errors-when-deep-import-file-changes.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/updates-errors-when-deep-import-file-changes.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules-and---declaration/deep-import-changes/updates-errors-when-deep-import-through-declaration-file-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/updates-errors-when-deep-import-through-declaration-file-changes.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules-and---declaration/deep-import-changes/updates-errors-when-deep-import-through-declaration-file-changes.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/updates-errors-when-deep-import-through-declaration-file-changes.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules-and---declaration/updates-errors-in-file-not-exporting-a-deep-multilevel-import-that-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/file-not-exporting-a-deep-multilevel-import-that-changes.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules-and---declaration/updates-errors-in-file-not-exporting-a-deep-multilevel-import-that-changes.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/file-not-exporting-a-deep-multilevel-import-that-changes.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules-and---declaration/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules-and---declaration/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules-and---declaration/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules-and---declaration/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/updates-errors-when-file-transitively-exported-file-changes/when-there-are-no-circular-import-and-exports.js diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules-and---declaration/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js similarity index 100% rename from tests/baselines/reference/tscWatch/emitAndErrorUpdates/config-with---isolatedModules-and---declaration/with-noEmitOnError.js rename to tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js