all files / core/errors/ test-timeout-error.ts

85.71% Statements 6/7
100% Branches 0/0
50% Functions 1/2
80% Lines 4/5
1 2 3 4 5 6 7 8        
import { MatchError } from "../_errors";
 
export class TestTimeoutError extends MatchError {
  public constructor(testTimeout: number) {
    super(null, null, `The test exceeded the given timeout of ${testTimeout}ms.`);
  }
}