Skip to content

Commit ed22b49

Browse files
authored
skip
1 parent 96ec5d0 commit ed22b49

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

ember_debug_test_app/tests/integration/injection-test.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import { module, test } from 'qunit';
22
import { setupApplicationTest } from 'ember-qunit';
3+
import { isInVersionSpecifier } from 'ember-debug/utils/version';
4+
import { VERSION } from 'ember-debug/utils/ember';
35

46
class ChromePort {
57
constructor(self, other) {
@@ -223,6 +225,13 @@ function getLoader(def, req) {
223225
module('Integration | Injection', function (hooks) {
224226
setupApplicationTest(hooks);
225227

228+
if (isInVersionSpecifier('3.16.0')) {
229+
return;
230+
}
231+
if (isInVersionSpecifier('>6.4.0')) {
232+
return;
233+
}
234+
226235
/**
227236
* @type {ChromeApi}
228237
*/

0 commit comments

Comments
 (0)