1 2 3 4 5 6 7 8 | 1× 1× 3× | import "reflect-metadata"; export function FocusTest(target: any, propertyKey: string, descriptor: TypedPropertyDescriptor<any>) { // mark test method as focussed Reflect.defineMetadata("alsatian:focus", true, target, propertyKey); }; |