alsatian-test/alsatian

View on GitHub
packages/alsatian/core/events/test-started.i.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ITest, ITestCase, ITestFixture } from "../_interfaces";

export interface ITestStartedEvent {
    testId: number;
    testCase: ITestCase;
    test: ITest;
    testFixture: ITestFixture;

}