test(spec.22): pause media before calling getCurrentPosition (#355)

diff --git a/tests/tests.js b/tests/tests.js
index 0cfcc59..6b9c389 100644
--- a/tests/tests.js
+++ b/tests/tests.js
@@ -435,6 +435,7 @@
                             checkInterval = setInterval(function () {
                                 if (context.done) return;
                                 media.seekTo(5000);
+                                media.pause(); // pause media before confirming if it seeked to 5 seconds against current position.
                                 media.getCurrentPosition(function (position) {
                                     expect(position).toBeCloseTo(5, 0);
                                     context.done = true;