Skip to content

Commit

Permalink
remove test volume test
Browse files Browse the repository at this point in the history
  • Loading branch information
gkatsev committed Jan 18, 2017
1 parent 9aeb920 commit 369c04a
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions test/unit/tech/html5.test.js
Expand Up @@ -100,21 +100,6 @@ QUnit.test('test defaultPlaybackRate', function(assert) {
assert.strictEqual(tech.defaultPlaybackRate(), 0.75, 'can be changed from the API');
});

QUnit.test('test volume', function(assert) {
if (!Html5.canControlVolume()) {
assert.ok(true, 'Volume is not supported');
return;
}

tech.createEl();

tech.el().volume = 0.5;
assert.strictEqual(tech.volume(), 0.5, 'can be changed from the element');

tech.setVolume(1);
assert.strictEqual(tech.volume(), 1, 'can be changed from the API');
});

QUnit.test('test defaultMuted', function(assert) {
tech.createEl();

Expand Down

0 comments on commit 369c04a

Please sign in to comment.