ferranvila/dockgrant

View on GitHub
lib/common-tests.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

module.exports = {

    /**
     * Method for importing a test file to the test suite
     * @param name Name of the test
     * @param path PAth of the file with the tests
     */
    importTest: function (name, path) {
        describe(name, function () {
            require(path);
        });
    }
};