Skip to content

Commit

Permalink
Fix test asserting the wrong thing
Browse files Browse the repository at this point in the history
  • Loading branch information
cibernox committed Dec 9, 2017
1 parent faa37cd commit f2bc98a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/acceptance/wormhole-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ test('sidebar example in place', function(assert) {
click('button:contains(Toggle In Place)');
andThen(function() {
assert.contentNotIn('sidebar');
assert.contentIn('othersidebar');
assert.contentNotIn('example-sidebar');
assert.contentNotIn('othersidebar');
assert.contentIn('example-sidebar');
});
click('#othersidebar button:contains(Hide)');
click('#sidebarWormhole button:contains(Hide)');
andThen(function() {
assert.contentNotIn('sidebar');
assert.contentNotIn('othersidebar');
Expand Down

0 comments on commit f2bc98a

Please sign in to comment.