Skip to content

Commit

Permalink
Skipping assertion check
Browse files Browse the repository at this point in the history
Currently you cannot test assertions since Ember 2.11 due to this bug:
emberjs/ember.js#15013
  • Loading branch information
alvincrespo committed May 11, 2017
1 parent 11572c3 commit c234f6c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/integration/components/links-with-follower-test.js
Expand Up @@ -64,7 +64,10 @@ describe('LinksWithFollowerComponent', function() {
});
});

describe('block children and childSelector dont match', function() {

// Asserting error thrown no longer works as of ember 2.11
// TODO: Remove skip once https://github.com/emberjs/ember.js/issues/15013 is resolved.
describe.skip('block children and childSelector dont match', function() {
it('throws an error', function() {
expect(() => {
this.render(hbs`
Expand Down

0 comments on commit c234f6c

Please sign in to comment.