UNPKG

@typed/test

Version:
7 lines (5 loc) 191 B
import { TestCollection } from '../types' import { isTest } from './isTest' export function isTestCollection(x: any): x is TestCollection { return isTest(x) && x.hasOwnProperty(`tests`) }