mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
- fix test: compiler plugin caching - less
This commit is contained in:
@@ -404,7 +404,7 @@ Object.assign(AppRunner.prototype, {
|
||||
self.startPromise = self._makePromise("start");
|
||||
|
||||
self.isRunning = true;
|
||||
self._runApp();
|
||||
self._runApp().catch((e) => console.error("Error thrown on _runApp", e));
|
||||
await self.startPromise;
|
||||
self.startPromise = null;
|
||||
},
|
||||
|
||||
@@ -280,6 +280,8 @@ async function capture(options, f) {
|
||||
|
||||
try {
|
||||
await f();
|
||||
} catch (e) {
|
||||
// don't remove this catch, otherwise any errors thrown will propagate. We don't want that.
|
||||
} finally {
|
||||
progress.reportProgressDone();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user