ESM support (#1235)

This commit is contained in:
Tomas Della Vedova
2020-06-26 11:57:43 +02:00
committed by GitHub
parent 148f2fd864
commit d16781e379
4 changed files with 46 additions and 1 deletions

View File

@ -0,0 +1,19 @@
'use strict'
const t = require('tap')
const semver = require('semver')
if (semver.lt(process.versions.node, '12.17.0')) {
t.skip('Skip because Node version < 12.17.0')
t.end()
} else {
// Node v8 throw a `SyntaxError: Unexpected token import`
// even if this branch is never touch in the code,
// by using `eval` we can avoid this issue.
// eslint-disable-next-line
new Function('module', 'return import(module)')('./index.mjs').catch((err) => {
process.nextTick(() => {
throw err
})
})
}