1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1× 1× 51× 51× 9× 51× 51× 1× | "use strict"; require("reflect-metadata"); function Setup(target, propertyKey, descriptor) { var setupFunctions = Reflect.getMetadata("alsatian:setup", target); if (!setupFunctions) { setupFunctions = []; } setupFunctions.push(propertyKey); // mark as setup test method Reflect.defineMetadata("alsatian:setup", setupFunctions, target); } exports.Setup = Setup; ; //# sourceMappingURL=setup-decorator.js.map |