We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba232b2 commit 4d01390Copy full SHA for 4d01390
1 file changed
src/harness/externalCompileRunner.ts
@@ -46,7 +46,7 @@ abstract class ExternalCompileRunnerBase extends RunnerBase {
46
if (update.status !== 0) throw new Error(`git submodule update for ${directoryName} failed!`);
47
48
const config = JSON.parse(fs.readFileSync(path.join(cwd, "test.json"), { encoding: "utf8" })) as UserConfig;
49
- ts.Debug.assert(!!config.types, "Git is the only reason for using test.json right now");
+ ts.Debug.assert(!!config.types, "Bad format from test.json: Types field must be present.");
50
types = config.types;
51
52
cwd = path.join(cwd, directoryName);
0 commit comments