Commit c25744bb by Ehtesham

changing to see the exact value in case of failure

parent 182921f1
......@@ -245,7 +245,8 @@
isFinite(state.videoPlayer.startTime);
}).then(function () {
expectedValue = $('.video-controls').find('.vidtime');
expect(expectedValue).toHaveText('0:15 / 0:20');
expect(expectedValue.length).toBe(1);
expect(expectedValue.text()).toBe('0:15 / 0:20');
expectedValue = sliderEl.slider('option', 'value');
expect(expectedValue).toBe(15);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment