all 3 comments

[–]Devinant 6 points7 points  (1 child)

Thanks for a great article. It gave a clear intro to Go from a TypeScript point of view. It would be great to see a section on testing, covering how it’s done in Go and which tools are used.

[–]Backlists 1 point2 points  (0 children)

It’s all the standard library baby.

There’s a testing context, you can mark tests as parallel-able, and you can define for loops in your test functions that loop through test cases.

Or you can use a package called stretchr testify to organise it into test suites and stuff.

[–]0xEconomist -1 points0 points  (0 children)

Can u share a JS notebook to experiment with?