Sha256: 161b9c00144dc967f196422a4b2535485b913de10b48153d1c348d1457cb2bc6
Contents?: true
Size: 803 Bytes
Versions: 11
Compression:
Stored size: 803 Bytes
Contents
// ========================================================================== // Project: TestRunner.testsController // Copyright: ©2011 Apple Inc. // ========================================================================== /*global TestRunner */ /** Manages the list of tests for the currently focused target. @extends SC.ArrayController */ TestRunner.testsController = SC.ArrayController.create( /** @scope TestRunner.testsController.prototype */ { contentBinding: SC.Binding.oneWay('TestRunner.targetController.tests'), /** Enables/disables continuous integration mode. */ useContinuousIntegration: NO, statusDidChange: function () { if (this.get('status') === SC.Record.READY_CLEAN) { TestRunner.statechart.resumeGotoState(); } }.observes('status') });
Version data entries
11 entries across 11 versions & 1 rubygems