partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

UserSetupCard.js (538B)


      1 /**
      2  * This card creates the user
      3  */
      4 Ext.define('PartKeeprSetup.UserSetupCard', {
      5     extend: 'PartKeeprSetup.AbstractTestCard',
      6 
      7     breadCrumbTitle: 'Setup (2/2)',
      8     rerunTestText: "Re-run setup",
      9     /**
     10      * Sets up the tests
     11      */
     12     setupTests: function ()
     13     {
     14         this.tests.push(new PartKeeprSetup.AdminUserSetup());
     15         this.tests.push(new PartKeeprSetup.ConfigSetup());
     16         this.tests.push(new PartKeeprSetup.FileMigrationSetup());
     17         this.tests.push(new PartKeeprSetup.WarmupCacheSetup());
     18     }
     19 });