Sha256: 571f6b45471f47cdb99fe42ff97df33b8b5f1339c9175d128af767c375bf1894
Contents?: true
Size: 890 Bytes
Versions: 9
Compression:
Stored size: 890 Bytes
Contents
// ========================================================================== // Project: TestRunner.testsController // Copyright: ©2009 My Company, 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, stateDidChange: function() { TestRunner.sendAction('testsDidChange'); }.observes('state') }) ;
Version data entries
9 entries across 9 versions & 1 rubygems