Skip to content

Commit ace334f

Browse files
authored
Fix CI e2e-babel error (#16946)
1 parent 8fa44ad commit ace334f

File tree

3 files changed

+52
-28
lines changed

3 files changed

+52
-28
lines changed

eslint.config.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ export default [
272272
"itBabel7NodeGte14NoESM",
273273
"itBabel8",
274274
"itESLint7",
275-
"itESLint8",
275+
"itESLintGte8",
276276
"itNoESM",
277277
"itNoWin32",
278278
"itESM",

eslint/babel-eslint-parser/test/index.js

+35-11
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,13 @@ function parseForESLint(code, options) {
1818

1919
const ESLINT_VERSION = ESLint.version;
2020
const isESLint7 = ESLINT_VERSION.startsWith("7.");
21+
const isESLint8 = ESLINT_VERSION.startsWith("8.");
2122
const { __dirname: dirname, require } = commonJS(import.meta.url);
2223

2324
// @babel/eslint-parser 8 will drop ESLint 7 support
2425

2526
const itESLint7 = isESLint7 && !process.env.BABEL_8_BREAKING ? it : itDummy;
26-
const itESLint8 = isESLint7 ? itDummy : it;
27+
const itESLintGte8 = isESLint7 ? itDummy : it;
2728

2829
const BABEL_OPTIONS = {
2930
configFile: path.resolve(
@@ -38,11 +39,14 @@ const PROPS_TO_REMOVE = [
3839
{ key: "typeArguments", type: null },
3940
{ key: "filename", type: null },
4041
{ key: "identifierName", type: null },
41-
// espree doesn't support these yet
42+
// For legacy estree AST
43+
{ key: "attributes", type: "ImportExpression" },
44+
];
45+
const PROPS_TO_REMOVE_ESLINT_LT_9 = [
46+
// old espree doesn't support these
4247
{ key: "attributes", type: "ImportDeclaration" },
4348
{ key: "attributes", type: "ExportNamedDeclaration" },
4449
{ key: "attributes", type: "ExportAllDeclaration" },
45-
{ key: "attributes", type: "ImportExpression" },
4650
{ key: "options", type: "ImportExpression" },
4751
];
4852

@@ -108,11 +112,32 @@ describe("Babel and Espree", () => {
108112
ecmaFeatures: babelEcmaFeatures,
109113
}).ast;
110114

111-
deeplyRemoveProperties(babelAST, PROPS_TO_REMOVE);
112-
deeplyRemoveProperties(espreeAST, ["offset"]);
115+
deeplyRemoveProperties(babelAST, [
116+
...PROPS_TO_REMOVE,
117+
...PROPS_TO_REMOVE_ESLINT_LT_9,
118+
]);
113119
expect(babelAST).toEqual(espreeAST);
114-
} else {
120+
} else if (isESLint8) {
115121
// ESLint 8
122+
const espreeAST = espree.parse(code, {
123+
...espreeOptions,
124+
ecmaVersion: 2024,
125+
});
126+
127+
const babelAST = parseForESLint(code, {
128+
eslintVisitorKeys: true,
129+
eslintScopeManager: true,
130+
babelOptions: BABEL_OPTIONS,
131+
ecmaFeatures: babelEcmaFeatures,
132+
}).ast;
133+
134+
deeplyRemoveProperties(babelAST, [
135+
...PROPS_TO_REMOVE,
136+
...PROPS_TO_REMOVE_ESLINT_LT_9,
137+
]);
138+
expect(babelAST).toEqual(espreeAST);
139+
} else {
140+
// ESLint 9
116141
const espreeAST = espree.parse(code, {
117142
...espreeOptions,
118143
ecmaVersion: "latest",
@@ -126,7 +151,6 @@ describe("Babel and Espree", () => {
126151
}).ast;
127152

128153
deeplyRemoveProperties(babelAST, PROPS_TO_REMOVE);
129-
deeplyRemoveProperties(espreeAST, ["offset"]);
130154
expect(babelAST).toEqual(espreeAST);
131155
}
132156
}
@@ -453,7 +477,7 @@ describe("Babel and Espree", () => {
453477
expect(babylonAST.tokens[3].value).toEqual("#");
454478
});
455479

456-
itESLint8("private identifier (token) - ESLint 8", () => {
480+
itESLintGte8("private identifier (token) - ESLint 8", () => {
457481
const code = "class A { #x }";
458482
const babylonAST = parseForESLint(code, {
459483
eslintVisitorKeys: true,
@@ -506,7 +530,7 @@ describe("Babel and Espree", () => {
506530
expect(classDeclaration.body.body[0].type).toEqual("PropertyDefinition");
507531
});
508532

509-
itESLint8("class fields with ESLint 8", () => {
533+
itESLintGte8("class fields with ESLint 8", () => {
510534
parseAndAssertSame(
511535
`
512536
class A {
@@ -550,7 +574,7 @@ describe("Babel and Espree", () => {
550574
).toMatchObject(staticKw);
551575
});
552576

553-
itESLint8("static (token) - ESLint 8", () => {
577+
itESLintGte8("static (token) - ESLint 8", () => {
554578
const code = `
555579
class A {
556580
static m() {}
@@ -607,7 +631,7 @@ describe("Babel and Espree", () => {
607631
expect(babylonAST.tokens[17]).toMatchObject(topicToken);
608632
});
609633

610-
itESLint8("pipeline # topic token - ESLint 8", () => {
634+
itESLintGte8("pipeline # topic token - ESLint 8", () => {
611635
const code = `
612636
x |> #
613637
y |> #[0]

yarn.lock

+16-16
Original file line numberDiff line numberDiff line change
@@ -4322,10 +4322,10 @@ __metadata:
43224322
languageName: node
43234323
linkType: hard
43244324

4325-
"@eslint/core@npm:^0.6.0":
4326-
version: 0.6.0
4327-
resolution: "@eslint/core@npm:0.6.0"
4328-
checksum: 10/ec5cce168c8773fbd60c5a505563c6cf24398b3e1fa352929878d63129e0dd5b134d3232be2f2c49e8124a965d03359b38962aa0dcf7dfaf50746059d2a2f798
4325+
"@eslint/core@npm:^0.7.0":
4326+
version: 0.7.0
4327+
resolution: "@eslint/core@npm:0.7.0"
4328+
checksum: 10/69227f33fddd9b402b7b0830732a6e84cae77d202cb5b56f0dbcc462882e07d00e80216b796cf2f243f5b775af3ef27545a0c439d78e66122eab71da4773b81c
43294329
languageName: node
43304330
linkType: hard
43314331

@@ -4346,10 +4346,10 @@ __metadata:
43464346
languageName: node
43474347
linkType: hard
43484348

4349-
"@eslint/js@npm:9.12.0, @eslint/js@npm:^9.12.0":
4350-
version: 9.12.0
4351-
resolution: "@eslint/js@npm:9.12.0"
4352-
checksum: 10/c4ec9f7ff664f778324002bccdfd63e4a563018e4d7efc838d8149898f9df8649fbc51a379c3d7deea40da4fba9e8e62f39f2df3ff2b9616e2241bbfc10456b0
4349+
"@eslint/js@npm:9.13.0, @eslint/js@npm:^9.12.0":
4350+
version: 9.13.0
4351+
resolution: "@eslint/js@npm:9.13.0"
4352+
checksum: 10/aa7a4c45044a6cf6e14666ecc0b56ad41c80f022bd4718620b4a7e3d892111312f4e4ac4787fd11b3bf5abdb6ff9a95fdae7e73ef790528f150d86e9be1754a2
43534353
languageName: node
43544354
linkType: hard
43554355

@@ -6170,11 +6170,11 @@ __metadata:
61706170
linkType: hard
61716171

61726172
"acorn@npm:^8.11.3, acorn@npm:^8.12.0, acorn@npm:^8.4.1, acorn@npm:^8.5.0, acorn@npm:^8.7.1, acorn@npm:^8.8.2":
6173-
version: 8.12.1
6174-
resolution: "acorn@npm:8.12.1"
6173+
version: 8.14.0
6174+
resolution: "acorn@npm:8.14.0"
61756175
bin:
61766176
acorn: bin/acorn
6177-
checksum: 10/d08c2d122bba32d0861e0aa840b2ee25946c286d5dc5990abca991baf8cdbfbe199b05aacb221b979411a2fea36f83e26b5ac4f6b4e0ce49038c62316c1848f0
6177+
checksum: 10/6df29c35556782ca9e632db461a7f97947772c6c1d5438a81f0c873a3da3a792487e83e404d1c6c25f70513e91aa18745f6eafb1fcc3a43ecd1920b21dd173d2
61786178
languageName: node
61796179
linkType: hard
61806180

@@ -9207,15 +9207,15 @@ __metadata:
92079207
linkType: hard
92089208

92099209
"eslint@npm:^9.12.0, eslint@npm:^9.7.0":
9210-
version: 9.12.0
9211-
resolution: "eslint@npm:9.12.0"
9210+
version: 9.13.0
9211+
resolution: "eslint@npm:9.13.0"
92129212
dependencies:
92139213
"@eslint-community/eslint-utils": "npm:^4.2.0"
92149214
"@eslint-community/regexpp": "npm:^4.11.0"
92159215
"@eslint/config-array": "npm:^0.18.0"
9216-
"@eslint/core": "npm:^0.6.0"
9216+
"@eslint/core": "npm:^0.7.0"
92179217
"@eslint/eslintrc": "npm:^3.1.0"
9218-
"@eslint/js": "npm:9.12.0"
9218+
"@eslint/js": "npm:9.13.0"
92199219
"@eslint/plugin-kit": "npm:^0.2.0"
92209220
"@humanfs/node": "npm:^0.16.5"
92219221
"@humanwhocodes/module-importer": "npm:^1.0.1"
@@ -9252,7 +9252,7 @@ __metadata:
92529252
optional: true
92539253
bin:
92549254
eslint: bin/eslint.js
9255-
checksum: 10/c3f10d1ca3798bf1d0f71e43846e254d4bf0ea9ffbb0e61f9686a98e412aa762a454c5e5ef4e74fd71956b1500c04817c9f08dbf7a0cec47317160e28f585e4f
9255+
checksum: 10/4342cc24a8d73581676f1b4959c2ddac18ed169731d9c55b708d2eacfc066ed5bdbc2c3c129e1f70142f0704bc25884a1a9ae580e15be5921f9c7f7d0f3ebe68
92569256
languageName: node
92579257
linkType: hard
92589258

0 commit comments

Comments
 (0)