-
Hi everyone - and hi @bpatrik - thanks for the awesome work. I want to contribute, but my Node knowledge and Typescript knowledge is very thin, but I have a programming education and understand most of the source code of PiGallery2 that I have read. So excuse my ignorance, but would someone be able to help me with the questions below? Running a test
Getting ready to develop
Thanks for reading and for any help. /Chris |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Ok. To answer my own question, for anyone in the future who might be interested: I ended up using my Windows PC. I do have WSL2 running Ubuntu on it, but I went for pure Windows development (heretical, I know ;) ).
Not all of these are in play here, but Test Explorer UI allows me to pinpoint a specific test in MetaDataLoader.spec.js and run it. With this in hand, I have now added another test, which fails due to the bug I want to fix. So now it's time to do some Test Driven Development. |
Beta Was this translation helpful? Give feedback.
Ok. To answer my own question, for anyone in the future who might be interested:
I ended up using my Windows PC. I do have WSL2 running Ubuntu on it, but I went for pure Windows development (heretical, I know ;) ).
Not all of these are in play here, but Test Explorer UI allows me to pinpoint a specific test in MetaDataLoader.spec.js and run it.
With this in hand, I have now added another test, which fails due…