UNPKG

180 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(/^import/.test(file))
7 t.end()
8})