Lasse Jørgensen

Results 183 comments of Lasse Jørgensen

@ShaunSHamilton I made a PR for it. It was only the one display test that was failing and all it needed was again a small delay. I would assume the...

It's all good. If you figure something out for the 25 + 5 clock let me know. Still not sure how to fix that, or at least what I have...

@fygen If you need help with your project please open a thread on [the forum](https://forum.freecodecamp.org/). If your project is not passing the tests using React 17 (or 18 using `ReactDOM.render`)...

@fygen This issue is not the correct place to ask for help with your project. Use the forum thread instead. If you check the example project you can see it...

I was thinking of adding a note, I'm just not sure where to put it. I have still seen some campers fail tests with React 18 on the challenges that...

@anlach Any help we can get is appreciated. I don't really have anything new to report on the tests for the 25 + 5 project. I still think the mutation...

The first one is actually in the process of being removed completely ([PR](https://github.com/freeCodeCamp/freeCodeCamp/pull/46639)). Because we can't ask people to do something that hasn't been taught. The second isn't really the...

Ideally the requirements and assert messages might be enough. Most TDD style code kata challenge sites have sample tests you can test against. Not seeing the tests is a bit...

I wonder if the support for the new color spaces (lab/lch/hwb) has anything to do with it? Did anyone check what value the helper is returning on that version of...

So the value is correct just not the property. curriculum\challenges\english\14-responsive-web-design-22\learn-css-colors-by-building-a-set-of-colored-markers\61a4ada3aabeec822b2975d9.md ```js assert.include(new __helpers.CSSHelp(document).getStyle('.green').cssText, 'background: rgb(0, 127, 0)'); ``` Is there a reason why we are checking `background` and not `background-color`?...