From 1f79c3e5b8a599243fcc1d87b0012d4b9e646a49 Mon Sep 17 00:00:00 2001 From: Robert Jackson Date: Mon, 17 Aug 2020 18:28:52 -0400 Subject: [PATCH] Drop support for configuring via `options['ember-cli-qunit']`. --- index.js | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/index.js b/index.js index e0600a40..da170d02 100644 --- a/index.js +++ b/index.js @@ -55,18 +55,11 @@ module.exports = { // 1. check this.parent.options['ember-qunit'] let targetOptions = this.parent.options && this.parent.options['ember-qunit']; + // 2. check this.app.options['ember-qunit'] targetOptions = targetOptions || (this.app && this.app.options && this.app.options['ember-qunit']); - // 3. check this.parent.options['ember-cli-qunit'] - targetOptions = - targetOptions || - (this.parent.options && this.parent.options['ember-cli-qunit']); - // 4. check this.app.options['ember-cli-qunit'] - targetOptions = - targetOptions || - (this.app && this.app.options && this.app.options['ember-cli-qunit']); this._targetOptions = targetOptions || {}; }