1 // ========================================================================== 2 // Project: SproutCore - JavaScript Application Framework 3 // Copyright: ©2013 7x7 Software, Inc. 4 // Portions ©2008-2011 Apple Inc. All rights reserved. 5 // License: Licensed under MIT license (see license.js) 6 // ========================================================================== 7 /*global TestRunner */ 8 9 /** 10 The TestRunner app. 11 12 @extends SC.Application 13 */ 14 TestRunner = SC.Application.create( 15 /** @scope TestRunner.prototype */ { 16 17 NAMESPACE: 'TestRunner', 18 19 VERSION: '0.1.0', 20 21 store: SC.Store.create().from('CoreTools.DataSource'), 22 23 userDefaults: SC.UserDefaults.create({ 24 userDomain: 'anonymous', 25 appDomain: 'SC.TestRunner' 26 }) 27 28 }); 29