Christopher Svanefalk
Christopher Svanefalk
React 18 is now stable: https://reactjs.org/blog/2022/03/29/react-v18.html
Update: this seems to be related to folder structure. ngInject is also used in app/main/main.component.js, and it very obviously works there (you can remove it to demonstrate this - the...
Update: adding `'ngInject'` inside the constructor resolves this, e.g.: ``` constructor($http) { 'ngInject'; } ``` I still do not understand why the annotation works in the Main file but not...
Bumped all the deps, however that was a while after the workaround was already added, so not sure if it made a difference.
Experiencing the same issue when using gulp-nodemon. I have two tasks which each nodemons a separate node instance. Running either task by itself works perfectly fine, but trying to run...
I have virtually the same usecase where we need to support links to HAR files generated from Cypress. Would be greatly appreciated.
`onlyOn` support a boolean argument so you can use it for the inverse case: ``` cy.onlyOn(Cypress.env.includedTests !== 'platform') ``` See https://github.com/cypress-io/cypress-skip-test#boolean-flag
Not sure if it helps anyone, but at Volvo we solved this by adding listeners to `document.hidden` and manually severing the connection when it becomes true. We then synch any...
> > Not sure if it helps anyone, but at Volvo we solved this by adding listeners to `document.hidden` and manually severing the connection when it becomes true. We then...
People getting this error in your CI environments, check if your process is running as root. In that case you need to pass the Chrome flag `--no-sandbox`