alsatian-test/alsatian

View on GitHub
packages/alsatian/core/errors/test-timeout-error.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { MatchError } from "./match-error";

export class TestTimeoutError extends MatchError {
    public constructor(testTimeout: number) {
        super(`The test exceeded the given timeout of ${testTimeout}ms.`);
    }
}