all files / core/decorators/ ignore-test-decorator.ts

75% Statements 3/4
100% Branches 0/0
0% Functions 0/1
66.67% Lines 2/3
1 2 3 4 5 6 7 8            
import "reflect-metadata";
 
export function IgnoreTest(target: any, propertyKey: string, descriptor: TypedPropertyDescriptor<any>) {
 
    // mark test method as ignored
    Reflect.defineMetadata("alsatian:ignore", true, target, propertyKey);
};