UNPKG

@typed/test

Version:
6 lines (4 loc) 167 B
import { TestResult } from '../types' export function isTestResult(x: any): x is TestResult { return x && x.hasOwnProperty('passed') && x.hasOwnProperty('error') }