Skip to content

Commit

Permalink
Skip test related to testing thrown errors
Browse files Browse the repository at this point in the history
According to this
ticket (emberjs/ember.js#15013) and this
ticket (emberjs/ember-mocha#141) ember 2.11
broke testing exceptions.
  • Loading branch information
Robdel12 committed Mar 24, 2017
1 parent 1868879 commit e980581
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/acceptance/x-select-multiple-test.js
Expand Up @@ -71,7 +71,9 @@ describe('XSelect: Multiple Selection', function() {
});
});

describe("trying to set the value to a non-array", function() {
// TODO: come back to this when https://github.com/emberjs/ember.js/issues/15013 is resolved.
// Ember 2.11 broke testing code that throws exceptions.
describe.skip("trying to set the value to a non-array", function() {
beforeEach(function() {
try {
Ember.run(() => {
Expand Down

0 comments on commit e980581

Please sign in to comment.