Fix order-dependent Jasmine failure due to missing translation key

There must be another Jasmine spec that modifies the locale without loading the default afterwards.
This commit is contained in:
Sage Ross 2022-01-15 12:53:51 -08:00 committed by Benjamin Neff
parent 2b352b86ae
commit 09ecaec0b5
No known key found for this signature in database
GPG key ID: 971464C3F1A90194

View file

@ -1,4 +1,8 @@
describe("app", function() {
beforeAll(function() {
Diaspora.I18n.load(spec.defaultLocale, "en");
});
afterAll(function() {
Backbone.history.stop();
app.initialize();