mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-08 02:46:15 -05:00
Add buildTsc to preTest for user test runner (#35781)
This commit is contained in:
@@ -430,7 +430,7 @@ const generateCodeCoverage = () => exec("istanbul", ["cover", "node_modules/moch
|
||||
task("generate-code-coverage", series(preBuild, buildTests, generateCodeCoverage));
|
||||
task("generate-code-coverage").description = "Generates code coverage data via istanbul";
|
||||
|
||||
const preTest = parallel(buildTests, buildServices, buildLssl);
|
||||
const preTest = parallel(buildTsc, buildTests, buildServices, buildLssl);
|
||||
preTest.displayName = "preTest";
|
||||
|
||||
const postTest = (done) => cmdLineOptions.lint ? lint(done) : done();
|
||||
|
||||
Reference in New Issue
Block a user