File tree 2 files changed +49
-1
lines changed
2 files changed +49
-1
lines changed Original file line number Diff line number Diff line change 108
108
"@eslint/plugin-kit" : " ^0.2.5" ,
109
109
"@humanfs/node" : " ^0.16.6" ,
110
110
"@humanwhocodes/module-importer" : " ^1.0.1" ,
111
- "@humanwhocodes/retry" : " ^0.4.1 " ,
111
+ "@humanwhocodes/retry" : " ^0.4.2 " ,
112
112
"@types/estree" : " ^1.0.6" ,
113
113
"@types/json-schema" : " ^7.0.15" ,
114
114
"ajv" : " ^6.12.4" ,
Original file line number Diff line number Diff line change @@ -6158,6 +6158,54 @@ describe("ESLint", () => {
6158
6158
assert . strictEqual ( createCallCount , 1 ) ;
6159
6159
} ) ;
6160
6160
6161
+ // https://github.com/eslint/eslint/issues/19243
6162
+ it ( "should not exit the process unexpectedly after a rule crashes" , async ( ) => {
6163
+ const cwd = getFixturePath ( ) ;
6164
+
6165
+ /*
6166
+ * Mocha attaches `unhandledRejection` event handlers to the current process.
6167
+ * To test without global handlers, we must launch a new process.
6168
+ */
6169
+ const teardown = createCustomTeardown ( {
6170
+ cwd,
6171
+ files : {
6172
+ "test.js" : `
6173
+ const { ESLint } = require(${ JSON . stringify ( require . resolve ( "eslint" ) ) } );
6174
+
6175
+ const eslint = new ESLint({
6176
+ flags: ${ JSON . stringify ( flags ) } ,
6177
+ overrideConfigFile: true,
6178
+ plugins: {
6179
+ boom: {
6180
+ rules: {
6181
+ boom: {
6182
+ create: () => ({
6183
+ "*"() {
6184
+ throw "Boom!";
6185
+ },
6186
+ }),
6187
+ }
6188
+ }
6189
+ }
6190
+ },
6191
+ baseConfig: {
6192
+ rules: {
6193
+ "boom/boom": "error"
6194
+ }
6195
+ }
6196
+ });
6197
+
6198
+ eslint.lintFiles("passing.js").catch(() => { });
6199
+ `
6200
+ }
6201
+ } ) ;
6202
+
6203
+ await teardown . prepare ( ) ;
6204
+ const execFile = util . promisify ( require ( "node:child_process" ) . execFile ) ;
6205
+
6206
+ await execFile ( process . execPath , [ "test.js" ] , { cwd } ) ;
6207
+ } ) ;
6208
+
6161
6209
describe ( "Error while globbing" , ( ) => {
6162
6210
6163
6211
it ( "should throw an error with a glob pattern if an invalid config was provided" , async ( ) => {
You can’t perform that action at this time.
0 commit comments