Sha256: 5234613eb08d21914a96519c4483073ed835b7a2407aa6c39dd6899c8ecdb7ca
Contents?: true
Size: 886 Bytes
Versions: 18
Compression:
Stored size: 886 Bytes
Contents
// ========================================================================== // Project: TestRunner.testsController // Copyright: ©2010 Apple Inc. // ========================================================================== /*globals TestRunner */ /** @class Manages the list of tests for the currently focused target. @extends SC.ArrayController */ TestRunner.testsController = SC.ArrayController.create( /** @scope TestRunner.testsController.prototype */ { contentBinding: "TestRunner.targetController.tests", /** Enables/disables continuous integration mode. */ useContinuousIntegration: NO, /** Whenever we are actually showing the tests, then controls are enabled. Set to YES when in READY_LIST mode. */ isShowingTests: YES, statusDidChange: function() { TestRunner.sendAction('testsDidChange'); }.observes('status') }) ;
Version data entries
18 entries across 18 versions & 2 rubygems