Skip to content

Instantly share code, notes, and snippets.

@another-guy
Created March 4, 2019 08:31
Show Gist options
  • Save another-guy/6b30351b6e76df0147c56da408759c5d to your computer and use it in GitHub Desktop.
Save another-guy/6b30351b6e76df0147c56da408759c5d to your computer and use it in GitHub Desktop.
ITestRunner's interface definition
interface ITestRunner {
run(testsRoot: string, clb: (error: Error, failures?: number) => void): void;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment