From 2815e1484ac2aefef3a05a6ba2cc366aa88ea408 Mon Sep 17 00:00:00 2001 From: Mitch Lloyd Date: Sun, 25 Jun 2017 12:39:07 -0700 Subject: [PATCH] Skip test related to Ember adapter issue https://github.com/emberjs/ember.js/issues/15013 --- tests/integration/components/ember-islands-test.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/integration/components/ember-islands-test.js b/tests/integration/components/ember-islands-test.js index 18c267b..ca3b8ea 100644 --- a/tests/integration/components/ember-islands-test.js +++ b/tests/integration/components/ember-islands-test.js @@ -1,6 +1,6 @@ import Ember from 'ember'; const { Component } = Ember; -import { moduleForComponent, test } from 'ember-qunit'; +import { moduleForComponent, test, skip } from 'ember-qunit'; import hbs from 'htmlbars-inline-precompile'; moduleForComponent('ember-islands', 'Integration | Component | ember islands', { @@ -81,7 +81,8 @@ test('it tears down an island component', function(assert) { assert.deepEqual(teardownCalls, ['willDestroyElement', 'willDestroy'], "All component teardown hooks called"); }); -test("Provides usefull error message when a component can't be found", function(assert) { +// Related issue: https://github.com/emberjs/ember.js/issues/15013 +skip("Provides usefull error message when a component can't be found", function(assert) { document.getElementById('ember-testing').innerHTML = `
`;