@@ -21,6 +21,9 @@ export class PlaybackStateBridge {
durationMs: 0
}
+ private constructor() {
+ }
+
public static getInstance(): PlaybackStateBridge {
if (!PlaybackStateBridge.instance) {
PlaybackStateBridge.instance = new PlaybackStateBridge()
@@ -14,7 +14,9 @@
*/
import abilityTest from './Ability.test'
+import playbackStateBridgeTest from './PlaybackStateBridge.test'
export default function testsuite() {
abilityTest()
-}
+ playbackStateBridgeTest()
+}