UNPKG

@typed/test

Version:
6 lines (4 loc) 172 B
import { TestResults } from '../types' export function isTestResults(x: any): x is TestResults { return x && x.hasOwnProperty('passed') && x.hasOwnProperty('results') }