Skip to content

Commit

Permalink
Skip test related to Ember adapter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchlloyd committed Jun 25, 2017
1 parent f498855 commit 2815e14
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions 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', {
Expand Down Expand Up @@ -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 = `
<div data-component="unknown-component"></div>
`;
Expand Down

0 comments on commit 2815e14

Please sign in to comment.