Skip to content

Commit

Permalink
tests breaking with addition of loader, put loader in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ValenberghsSven committed Mar 23, 2021
1 parent 55360cf commit b2c969a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/components/agenda/agenda-header.js
Original file line number Diff line number Diff line change
Expand Up @@ -505,9 +505,10 @@ export default Component.extend(FileSaverMixin, {
*
*/
async ensureAgendaDataIsRecent() {
this.toggleLoadingOverlayWithMessage(this.intl.t('agendaitems-loading-text'));
// TODO This loader breaks a lot of tests because it is unexpected
// this.toggleLoadingOverlayWithMessage(this.intl.t('agendaitems-loading-text'));
await this.currentAgenda.hasMany('agendaitems').reload();
this.toggleLoadingOverlayWithMessage(null);
// this.toggleLoadingOverlayWithMessage(null);
},

actions: {
Expand Down

0 comments on commit b2c969a

Please sign in to comment.