UNPKG

babel-tape-runner

Version:

Babel + Tape for running your ES Next tests

10 lines (8 loc) 212 B
import { readFileSync } from 'fs' import test from 'tape' test('babel-tape-runner', t => { let file = readFileSync(__filename, 'utf8') t.ok(/hello/gim.flags, 'gim') t.ok(/^import/.test(file)) t.end() })