mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Removing blaze flag from tests with creation
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user