Closed martypdx closed 10 months ago
After forking, cloning, npm i, npm test has 9 failures in tests/6/modules and tests/8/modules. They are all import/export related and fail with this error (though different locations):
npm i
npm test
tests/6/modules
tests/8/modules
AssertionError [ERR_ASSERTION]: Expected values to be strictly deep-equal: + actual - expected ... Lines skipped { body: [ ... 15 ], + type: 'Identifier', - type: 'Keyword', value: 'default' ... ], type: 'Program' } + expected - actual "range": [ 8 15 ] - "type": "Identifier" + "type": "Keyword" "value": "default"
Updating to latest acorn doesn't help.
We're working on this in https://github.com/eslint/espree/pull/590, looks like a problem in the latest acorn.
After forking, cloning,
npm i
,npm test
has 9 failures intests/6/modules
andtests/8/modules
. They are all import/export related and fail with this error (though different locations):Updating to latest acorn doesn't help.