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 786e36e commit d304049Copy full SHA for d304049
src/testRunner/externalCompileRunner.ts
@@ -52,7 +52,7 @@ abstract class ExternalCompileRunnerBase extends RunnerBase {
52
const submoduleDir = path.join(cwd, directoryName);
53
exec("git", ["reset", "HEAD", "--hard"], { cwd: submoduleDir });
54
exec("git", ["clean", "-f"], { cwd: submoduleDir });
55
- exec("git", ["submodule", "update", "--init", "--remote", "."], { cwd: submoduleDir });
+ exec("git", ["submodule", "update", "--init", "--remote", "."], { cwd: originalCwd });
56
57
const config = JSON.parse(fs.readFileSync(path.join(cwd, "test.json"), { encoding: "utf8" })) as UserConfig;
58
ts.Debug.assert(!!config.types, "Bad format from test.json: Types field must be present.");
0 commit comments