Removing blaze flag from tests with creation

This commit is contained in:
filipenevola
2021-05-13 10:18:28 -04:00
parent 123c696d86
commit 5fd6563160
2 changed files with 4 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ selftest.define("create main", function () {
// We need a warehouse so the tool doesn't think we are running from checkout
var s = new Sandbox({ warehouse: SIMPLE_WAREHOUSE });
// Can we create an app? Yes!
var run = s.run("create", "foobar", "--blaze");
var run = s.run("create", "foobar");
run.match("Created a new Meteor app in 'foobar'.");
run.match("To run your new app");
run.expectExit(0);

View File

@@ -33,7 +33,7 @@ selftest.define("springboard", ['checkout', 'net', 'custom-warehouse'], function
run.expectExit(0);
// Apps are created with the latest release ...
run = s.run("create", "myapp", "--blaze");
run = s.run("create", "myapp");
run.waitSecs(5);
run.expectExit(0);
s.cd('myapp', function () {
@@ -43,7 +43,7 @@ selftest.define("springboard", ['checkout', 'net', 'custom-warehouse'], function
});
// ... unless you asked for a different one.
run = s.run("create", "myapp2", "--blaze", "--release", DEFAULT_RELEASE_TRACK + "@v1").expectExit(0);
run = s.run("create", "myapp2", "--release", DEFAULT_RELEASE_TRACK + "@v1").expectExit(0);
s.cd('myapp2', function () {
run = s.run("--version");
run.read('Meteor v1\n');
@@ -135,7 +135,7 @@ selftest.define("writing versions file", ['checkout', 'net', 'custom-warehouse']
var run;
// Create an app with the latest release.
run = s.run("create", "myapp", "--blaze");
run = s.run("create", "myapp");
run.waitSecs(15);
run.expectExit(0);
s.cd('myapp');