1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update detail page

This commit is contained in:
Luke Pulverenti 2015-08-19 02:12:58 -04:00
parent f5323ff3c2
commit dc87e4ccc2
17 changed files with 102 additions and 36 deletions

View file

@ -21,6 +21,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
<script src="../../test-fixture/test-fixture-mocha.js"></script>
<link rel="import" href="../paper-tabs.html">
<link rel="import" href="../../iron-test-helpers/iron-test-helpers.html">
<link rel="import" href="../../test-fixture/test-fixture.html">
</head>
@ -149,10 +150,11 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
suite('select tab via click', function() {
var tabs, index = 1;
var tab;
setup(function () {
tabs = fixture('basic');
var tab = tabs.querySelectorAll('paper-tab')[index];
tab = tabs.querySelectorAll('paper-tab')[index];
tab.dispatchEvent(new CustomEvent('click', {bubbles: true}));
});
@ -172,6 +174,18 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
}, 1000);
});
test('pressing enter on tab causes a click', function(done) {
var clickCount = 0;
tab.addEventListener('click', function onTabClick() {
clickCount++;
tab.removeEventListener('click', onTabClick);
expect(clickCount).to.be.equal(1);
done();
});
MockInteractions.pressEnter(tab);
});
});
</script>