test('.parse(path, text): ast of import and export *', t => {
  const text = 'import foo from "bar"; export * from "bar";'
  const ast = astParser.parse(path, text)
  const expectedImports = { '/hello/app/bar.js': 'foo' }
  const expectedExports = { all: 'bar' }