UNPKG

212 BJavaScriptView Raw
1import { readFileSync } from 'fs'
2import test from 'tape'
3
4test('babel-tape-runner', t => {
5 let file = readFileSync(__filename, 'utf8')
6 t.ok(/hello/gim.flags, 'gim')
7 t.ok(/^import/.test(file))
8 t.end()
9})