Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
init() {
this._super(...arguments);
// Indicate that the message is now being displayed
if (this.message.visible === undefined) {
// Should really be in didInsertElement but Glimmer doesn't allow this
this.set('message.visible', true);
}
this.run = Runner.create({ disabled: !Notify.testing });
},