partkeepr

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

ExistingConfigParserCard.js (497B)


      1 /**
      2  * This card runs the prequisites test to make sure basic things like PHP and Doctrine are installed and configured.
      3  */
      4 Ext.define('PartKeeprSetup.ExistingConfigParserCard', {
      5     extend: 'PartKeeprSetup.AbstractTestCard',
      6 
      7     cardMessage: "Setup now checks if a configuration exists",
      8     breadCrumbTitle: 'Existing Configuration',
      9     /**
     10      * Sets up all tests
     11      */
     12     setupTests: function ()
     13     {
     14         this.tests.push(new PartKeeprSetup.ExistingConfigurationTest());
     15     }
     16 });