We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96ec5d0 commit ed22b49Copy full SHA for ed22b49
ember_debug_test_app/tests/integration/injection-test.js
@@ -1,5 +1,7 @@
1
import { module, test } from 'qunit';
2
import { setupApplicationTest } from 'ember-qunit';
3
+import { isInVersionSpecifier } from 'ember-debug/utils/version';
4
+import { VERSION } from 'ember-debug/utils/ember';
5
6
class ChromePort {
7
constructor(self, other) {
@@ -223,6 +225,13 @@ function getLoader(def, req) {
223
225
module('Integration | Injection', function (hooks) {
224
226
setupApplicationTest(hooks);
227
228
+ if (isInVersionSpecifier('3.16.0')) {
229
+ return;
230
+ }
231
+ if (isInVersionSpecifier('>6.4.0')) {
232
233
234
+
235
/**
236
* @type {ChromeApi}
237
*/
0 commit comments