Wink Saville
Wink Saville
Yes, for instance some of my tests have several Expects so knowing quickly which failed is helpful. Also many tests have very similar names and output so its hard to...
[Here](https://github.com/winksaville/test-clang-and-wasm-merge/blob/master/utils/utils.spec.ts) is a test some have one Expect some have many such as: ``` @TestCase("./utils/inc.c") @AsyncTest("test instantiateWasmFile") public async testInstantiateWasmFile(filePath: string) { let wasmFile: string; await Expect(async () => {...
Yes you could split it into multiple tests, but I'd still be inclined to add expects on each of the setup steps in an individual test, just in case. Take...
I think one assertion per test is a good rule of thumb but certainly not always followed or absolutely desirable. Case in point several tests in `test/unit-tests/expect-tests/to-throw.spec.ts` in master are...
My answers: 1. What should the TAP output look like? What I've done is append the information to the description line in `_emitFail`: ``` private _emitFail(testId: number, test: ITest, testCaseArguments:...
Thoughts?
I'm worried that TAP is moving glacially. There are 19 issues on the spec GitHub site https://github.com/TestAnything/Specification/issues of which 16 are from 2015, looks like no progress to me. One...
Good idea! On Fri, Jun 10, 2016, 8:30 AM Niklas Rosenstein [email protected] wrote: > While I detest CMake in general, I like how you can use the GUI to enable...
Have you used it, looks like an interesting goal?
I ran into this same problem and as you discovered by simply changing deposit_cli_version field to 2.3.0 it now is accepted. I searched the source code and found there is...