diff --git a/tools/tests/typescript.js b/tools/tests/typescript.js index 0dfbe8164f..420f0a51ea 100644 --- a/tools/tests/typescript.js +++ b/tools/tests/typescript.js @@ -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");