FIX: Broken test, data-auto-route is no longer needed

This commit is contained in:
Robin Ward 2016-04-27 14:03:45 -04:00
parent 1c90b8dd76
commit 2f911d9435
No known key found for this signature in database
GPG key ID: 0E091E2B4ED1B83D

View file

@ -18,7 +18,6 @@ widgetTest('basics', {
test(assert) {
assert.ok(this.$('.title').length === 1);
assert.ok(this.$('a[data-auto-route]').length === 1);
assert.ok(this.$('img#site-logo.logo-big').length === 1);
assert.equal(this.$('#site-logo').attr('src'), bigLogo);
@ -52,8 +51,6 @@ widgetTest('no logo', {
},
test(assert) {
assert.ok(this.$('a[data-auto-route]').length === 1);
assert.ok(this.$('h2#site-text-logo.text-logo').length === 1);
assert.equal(this.$('#site-text-logo').text(), title);
}