FIX: Desktop Notifications break Qunit tests

We should figure out why they can't run without the conditional in a
browser.
This commit is contained in:
Robin Ward 2015-04-28 19:24:32 -04:00
parent e361916138
commit 3252bf1252
1 changed files with 3 additions and 1 deletions

View File

@ -56,7 +56,9 @@ export default {
});
});
initDesktopNotifications(bus);
if (!Ember.testing) {
initDesktopNotifications(bus);
}
}
}
};