Michael Banucu
Michael Banucu
### Atomic The problem is, that replacing private functions called in a public function can't be replaced. So if we define "atomic" as "call only one public function", then I...
The modified tests of pull request #193 are atomic and file IO is used at a minimum. The tests need file IO because the input and output of the tested...
If someone has further suggestions which tests can be created or how the assertion parts should look like, tell it to me.
I don't understand the problem.
How do I upvote this pull request?
I am using "Debian GNU/Linux 11 (bullseye)" and I had to install LLVM 11 (https://apt.llvm.org/) as prerequisite: ```bash wget https://apt.llvm.org/llvm.sh chmod +x llvm.sh sudo ./llvm.sh 11 all ``` for building...
The build worked. How do I create an executable for debian or create a deb-package?
> > The build worked. How do I create an executable for debian or create a deb-package? > > there is already an package https://packages.debian.org/sid/ausweisapp2 This is the package for...
> > > > The build worked. How do I create an executable for debian or create a deb-package? > > > > > > > > > there is...
I fixed it like this: [https://github.com/MBanucu/NodeBB/blob/21e95ba3a785c0f261a316fadf760c8e32c4e15b/test/api.mjs#L357-L375](https://github.com/MBanucu/NodeBB/blob/21e95ba3a785c0f261a316fadf760c8e32c4e15b/test/api.mjs#L357-L375) ```mjs const posts = (await import('../src/posts/index.js')).default; // Create a post diff await posts.edit({ uid: adminUid, pid: unprivTopic.postData.pid, content: 'Test topic 2 edited content', req:...