mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
updated with await
This commit is contained in:
@@ -8,7 +8,7 @@ selftest.define("dynamic import(...) in development", async function () {
|
||||
await s.init();
|
||||
|
||||
await s.createApp("dynamic-import-test-app-devel", "dynamic-import");
|
||||
s.cd("dynamic-import-test-app-devel", run.bind(s, false));
|
||||
await s.cd("dynamic-import-test-app-devel", run.bind(s, false));
|
||||
});
|
||||
|
||||
selftest.define("dynamic import(...) in production", async function () {
|
||||
@@ -16,7 +16,7 @@ selftest.define("dynamic import(...) in production", async function () {
|
||||
await s.init();
|
||||
|
||||
await s.createApp("dynamic-import-test-app-prod", "dynamic-import");
|
||||
s.cd("dynamic-import-test-app-prod", run.bind(s, true));
|
||||
await s.cd("dynamic-import-test-app-prod", run.bind(s, true));
|
||||
});
|
||||
|
||||
selftest.define("dynamic import(...) with cache", async function () {
|
||||
|
||||
Reference in New Issue
Block a user