Skip to content

Instantly share code, notes, and snippets.

@allanhortle
allanhortle / testing-comparison-table.md
Last active November 2, 2017 01:16
Testing Comparison Table

Testing Comparison Table

Name Assertion Library Test Runner Mocks & Spies Coverage
Karma - X - -
Jasmine X X X -
mocha - X - -
sinon - - X -
proxyquire - - X -
tape X X - -
@allanhortle
allanhortle / immutable-lodash-equivalants.md
Last active March 31, 2016 23:29
Immutable JS Lodash Equivalants

Immutable Lodash Equivilants

Unique list from the value of a key in a collection.

// Lodash
_(data).uniq(dd => dd.value).value()

// Immutable
List(data).reduce((rr, dd) => rr.set(dd.value, dd), Map()).toArray()