2017-04-07 07:48:49 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2017-04-07 07:48:49 +00:00
|
|
|
*
|
2017-11-02 13:14:11 +00:00
|
|
|
* @emails oncall+react_native
|
2017-04-07 07:48:49 +00:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const SceneTracker = require('SceneTracker');
|
|
|
|
|
|
|
|
describe('setActiveScene', function() {
|
|
|
|
|
|
|
|
it('can handle multiple listeners and unsubscribe', function() {
|
|
|
|
const listeners = [jest.fn(), jest.fn(), jest.fn()];
|
|
|
|
const subscriptions = listeners.map(
|
|
|
|
(listener) => SceneTracker.addActiveSceneChangedListener(listener)
|
|
|
|
);
|
|
|
|
subscriptions[1].remove();
|
|
|
|
const newScene = {name: 'scene1'};
|
|
|
|
SceneTracker.setActiveScene(newScene);
|
|
|
|
expect(listeners[0]).toBeCalledWith(newScene);
|
|
|
|
expect(listeners[1]).not.toBeCalled();
|
|
|
|
expect(listeners[2]).toBeCalledWith(newScene);
|
|
|
|
});
|
|
|
|
});
|