Mason Malone

Results 66 comments of Mason Malone

@dometto Yeah,seems there's a second bug here. When I step through the code, there's an "svgEl.viewBox.baseVal is null" error triggered by the following line: https://github.com/mermaid-js/mermaid/blob/9a0d5e31b77fcea6b20338078e46c78d5a8a7c3c/src/mermaidAPI.ts#L326

@staabm You're correct that the current process-based isolation mechanism (which uses `proc_open()`) also has problems with side effects under certain circumstances, but database connections aren't one of them. Database connections...

No problem. I'm happy to run any proposed changes on our codebase, which make heavy use of process isolation and would greatly benefit from any performance benefits. I came across...

This seems to fix it: https://github.com/cypress-io/cypress/compare/develop...MasonM:cypress:fix-26308 But I only tested by manually applying this change to `/Users/mmalone/Library/Caches/Cypress/12.8.1/Cypress.app/Contents/Resources/app/packages/server/lib/plugins/child/ts_node.js` and following the reproduction steps, so I don't know if it'll have any...

@lmiller1990 Probably because it's getting overridden to `"module"` by the `tsconfig.json` in the project

@lmiller1990 That's odd. The reproduction repository doesn't have `"allowImportingTsExtensions"` at all, so how is it getting that?

@lmiller1990 Okay, done: https://github.com/cypress-io/cypress/pull/26415 Seems the tests aren't running, probably because I didn't sign the CLA. But I can't do that without permission from my employer, and that process generally...

In my project, we don't have any tests written in TypeScript, only application code. In other words, the mere presence of a `tsconfig.json` with `"moduleResolution": "bundler"` triggers this bug, even...

@philipp-serfling The PR is stalled because I can't sign the CLA, so the Cypress team can't accept it. If you can sign the CLA, then feel free to open an...

I've also been investigating ways to speed up our test suite, which makes heavy use of process isolation, but unfortunately I haven't found anything that helps without major caveats. You...