tests: reverted shell tests

This commit is contained in:
Gabriel Grubba
2022-12-06 21:39:10 -03:00
parent a720c329c4
commit 2e1e500dd0

View File

@@ -12,10 +12,10 @@ selftest.define("meteor shell", function () {
var shell = s.run("shell");
// First try a simple one-line expression.
shell.write("{server:Meteor.isServer}\n");
shell.write("({server:Meteor.isServer})\n");
shell.proc.stdin.end();
shell.waitSecs(20);
shell.match('{ server: true }');
shell.waitSecs(10);
shell.match('{"server":true}');
shell.expectExit(0);
shell = s.run("shell");