trying something

This commit is contained in:
Gabriel Grubba
2023-02-23 19:07:30 -03:00
parent 8753d10f19
commit ce75b877e7

View File

@@ -5,14 +5,19 @@ selftest.define("typescript template works", function () {
const s = new Sandbox;
let run = s.run("create", "--typescript", "typescript");
run.waitSecs(60);
run.match("Created a new Meteor app in 'typescript'.");
run.match("To run your new app");
s.cd("typescript");
run = s.run("npm", "install");
run.expectExit(0);
run = s.run("lint");
run.waitSecs(60);
run.match("[zodern:types] Exiting \"meteor lint\" early")
run.match("[zodern:types] Exiting \"meteor lint\" early");
run.expectExit(0);
run = s.run("npx", "tsc");