| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -77,7 +77,6 @@ overrides: | |||
| 77 | 77 | - internet/*.js | |
| 78 | 78 | - js-native-api/*/*.js | |
| 79 | 79 | - known_issues/*.js | |
| 80 | - - message/*.js | ||
| 81 | 80 | - node-api/*/*.js | |
| 82 | 81 | - parallel/*.js | |
| 83 | 82 | - parallel/*.mjs | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -29,7 +29,7 @@ main(); | |||
| 29 | 29 | '-e', | |
| 30 | 30 | main, | |
| 31 | 31 | ], { | |
| 32 | - env: { ...process.env } | ||
| 32 | + env: { ...process.env }, | ||
| 33 | 33 | }); | |
| 34 | 34 | ||
| 35 | 35 | if (child.status !== 0) { | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -31,7 +31,7 @@ main(); | |||
| 31 | 31 | '-e', | |
| 32 | 32 | main, | |
| 33 | 33 | ], { | |
| 34 | - env: { ...process.env } | ||
| 34 | + env: { ...process.env }, | ||
| 35 | 35 | }); | |
| 36 | 36 | ||
| 37 | 37 | if (child.status !== 0) { | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,7 +4,7 @@ const consoleDescriptor = Object.getOwnPropertyDescriptor(global, 'console'); | |||
| 4 | 4 | Object.defineProperty(global, 'console', { | |
| 5 | 5 | configurable: true, | |
| 6 | 6 | writable: true, | |
| 7 | - value: {} | ||
| 7 | + value: {}, | ||
| 8 | 8 | }); | |
| 9 | 9 | ||
| 10 | 10 | require('../common'); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -270,7 +270,7 @@ it('custom inspect symbol fail', () => { | |||
| 270 | 270 | [util.inspect.custom]() { | |
| 271 | 271 | return 'customized'; | |
| 272 | 272 | }, | |
| 273 | - foo: 1 | ||
| 273 | + foo: 1, | ||
| 274 | 274 | }; | |
| 275 | 275 | ||
| 276 | 276 | throw obj; | |
@@ -281,7 +281,7 @@ it('custom inspect symbol that throws fail', () => { | |||
| 281 | 281 | [util.inspect.custom]() { | |
| 282 | 282 | throw new Error('bad-inspect'); | |
| 283 | 283 | }, | |
| 284 | - foo: 1 | ||
| 284 | + foo: 1, | ||
| 285 | 285 | }; | |
| 286 | 286 | ||
| 287 | 287 | throw obj; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -303,7 +303,7 @@ test('custom inspect symbol fail', () => { | |||
| 303 | 303 | [util.inspect.custom]() { | |
| 304 | 304 | return 'customized'; | |
| 305 | 305 | }, | |
| 306 | - foo: 1 | ||
| 306 | + foo: 1, | ||
| 307 | 307 | }; | |
| 308 | 308 | ||
| 309 | 309 | throw obj; | |
@@ -314,7 +314,7 @@ test('custom inspect symbol that throws fail', () => { | |||
| 314 | 314 | [util.inspect.custom]() { | |
| 315 | 315 | throw new Error('bad-inspect'); | |
| 316 | 316 | }, | |
| 317 | - foo: 1 | ||
| 317 | + foo: 1, | ||
| 318 | 318 | }; | |
| 319 | 319 | ||
| 320 | 320 | throw obj; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -28,7 +28,7 @@ test('top level test enabled', common.mustCall(async (t) => { | |||
| 28 | 28 | t.afterEach(common.mustCall()); | |
| 29 | 29 | await t.test( | |
| 30 | 30 | 'nested test runs because name includes PATTERN', | |
| 31 | - common.mustCall() | ||
| 31 | + common.mustCall(), | ||
| 32 | 32 | ); | |
| 33 | 33 | })); | |
| 34 | 34 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -19,11 +19,11 @@ const cause5 = new Error('Object cause', { | |||
| 19 | 19 | message: 'Unique', | |
| 20 | 20 | name: 'Error', | |
| 21 | 21 | stack: 'Error: Unique\n' + | |
| 22 | - ' at Module._compile (node:internal/modules/cjs/loader:827:30)' | ||
| 23 | - } | ||
| 22 | + ' at Module._compile (node:internal/modules/cjs/loader:827:30)', | ||
| 23 | + }, | ||
| 24 | 24 | }); | |
| 25 | 25 | const cause6 = new Error('undefined cause', { | |
| 26 | - cause: undefined | ||
| 26 | + cause: undefined, | ||
| 27 | 27 | }); | |
| 28 | 28 | ||
| 29 | 29 | console.log(cause4); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -30,7 +30,7 @@ console.error('beginning'); | |||
| 30 | 30 | try { | |
| 31 | 31 | vm.runInThisContext('throw new Error("boo!")', { | |
| 32 | 32 | filename: 'test.vm', | |
| 33 | - displayErrors: false | ||
| 33 | + displayErrors: false, | ||
| 34 | 34 | }); | |
| 35 | 35 | } catch { | |
| 36 | 36 | // Continue regardless of error. | |
@@ -40,7 +40,7 @@ console.error('middle'); | |||
| 40 | 40 | ||
| 41 | 41 | vm.runInThisContext('throw new Error("boo!")', { | |
| 42 | 42 | filename: 'test.vm', | |
| 43 | - displayErrors: false | ||
| 43 | + displayErrors: false, | ||
| 44 | 44 | }); | |
| 45 | 45 | ||
| 46 | 46 | console.error('end'); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -30,7 +30,7 @@ console.error('beginning'); | |||
| 30 | 30 | try { | |
| 31 | 31 | vm.runInThisContext('var 5;', { | |
| 32 | 32 | filename: 'test.vm', | |
| 33 | - displayErrors: false | ||
| 33 | + displayErrors: false, | ||
| 34 | 34 | }); | |
| 35 | 35 | } catch { | |
| 36 | 36 | // Continue regardless of error. | |
@@ -40,7 +40,7 @@ console.error('middle'); | |||
| 40 | 40 | ||
| 41 | 41 | vm.runInThisContext('var 5;', { | |
| 42 | 42 | filename: 'test.vm', | |
| 43 | - displayErrors: false | ||
| 43 | + displayErrors: false, | ||
| 44 | 44 | }); | |
| 45 | 45 | ||
| 46 | 46 | console.error('end'); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments