all files / core/decorators/ teardown-decorator.js

100% Statements 9/9
100% Branches 2/2
100% Functions 1/1
100% Lines 9/9
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15  54× 54× 12×   54×   54×      
"use strict";
require("reflect-metadata");
var _metadata_keys_1 = require("./_metadata-keys");
function Teardown(target, propertyKey, descriptor) {
    var teardownFunctions = Reflect.getMetadata(_metadata_keys_1.TEARDOWN, target);
    if (!teardownFunctions) {
        teardownFunctions = [];
    }
    teardownFunctions.push(propertyKey);
    // mark as teardown test method
    Reflect.defineMetadata(_metadata_keys_1.TEARDOWN, teardownFunctions, target);
}
exports.Teardown = Teardown;
;
//# sourceMappingURL=teardown-decorator.js.map