You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hit this problem when trying to get tap to work in "--compat" mode.
This snippet shows how tap runs a single file with tests:
debug('js file',file)/* istanbul ignore next - version specific behavior */constexperimental=/^v10\./.test(process.version)&&/\.mjs$/.test(file)
? ['--experimental-modules'] : []constargs=[
...options['node-arg'],
...experimental,file,
...options['test-arg']]tap.spawn(node,args,opt,file)
node is defined as:
constnode=process.execPath
Later it constructs a command to be run using something like this:
Hit this problem when trying to get
tap
to work in "--compat" mode.This snippet shows how
tap
runs a single file with tests:node
is defined as:Later it constructs a command to be run using something like this:
tap
is not aware that it must run the process by usingdeno run --compat --unstable
args and only usesdeno
.The text was updated successfully, but these errors were encountered: