@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
16 lines (15 loc) • 785 B
TypeScript
import TestRunner from '../../features/test/TestRunner';
import AbstractTestTest from '../../tests/AbstractTestTest';
export default class TestRunnerTest extends AbstractTestTest {
protected static testRunner: TestRunner;
private static hasCreatedTest;
protected static beforeEach(): Promise<void>;
protected static canCreateTestRunner(): Promise<void>;
protected static runningOnDirWithNoTestsConfiguredThrows(): Promise<void>;
protected static getsFailedResultsWhenTestFails(): Promise<void>;
protected static passesOnGoodTests(): Promise<void>;
protected static emitsEventsOnTestUpdates(): Promise<void>;
protected static canHandlePattern(): Promise<void>;
protected static testsCanBeKilled(): Promise<void>;
private static createTest;
}