partkeepr/PartKeepr

View on GitHub
web/setup/js/Cards/ExistingConfigParserCard.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * This card runs the prerequisites test to make sure basic things like PHP and Doctrine are installed and configured.
 */
Ext.define('PartKeeprSetup.ExistingConfigParserCard', {
    extend: 'PartKeeprSetup.AbstractTestCard',

    cardMessage: "Setup now checks if a configuration exists",
    breadCrumbTitle: 'Existing Configuration',
    /**
     * Sets up all tests
     */
    setupTests: function ()
    {
        this.tests.push(new PartKeeprSetup.ExistingConfigurationTest());
    }
});