Uses create --blaze while we don't have a final published version of hot-module-replacement

This commit is contained in:
filipenevola
2021-01-17 21:45:35 -04:00
parent 52e423082f
commit 03fd73fc03
2 changed files with 4 additions and 4 deletions

View File

@@ -7,7 +7,7 @@ selftest.define("create", function () {
var s = new Sandbox({ warehouse: SIMPLE_WAREHOUSE });
// Can we create an app? Yes!
var run = s.run("create", "foobar");
var run = s.run("create", "foobar", "--blaze");
run.waitSecs(60);
run.match("Created a new Meteor app in 'foobar'.");
run.match("To run your new app");

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");
run = s.run("create", "myapp", "--blaze");
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", "--release", DEFAULT_RELEASE_TRACK + "@v1").expectExit(0);
run = s.run("create", "myapp2", "--blaze", "--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");
run = s.run("create", "myapp", "--blaze");
run.waitSecs(15);
run.expectExit(0);
s.cd('myapp');