(defaultPlugins, scenePlugins)
| 3 | describe('Phaser.Scenes.GetScenePlugins', function () |
| 4 | { |
| 5 | function makeSys(defaultPlugins, scenePlugins) |
| 6 | { |
| 7 | return { |
| 8 | plugins: { |
| 9 | getDefaultScenePlugins: function () { return defaultPlugins; } |
| 10 | }, |
| 11 | settings: scenePlugins !== undefined ? { plugins: scenePlugins } : {} |
| 12 | }; |
| 13 | } |
| 14 | |
| 15 | it('should return scene-level plugins when defined as an array', function () |
| 16 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…