0.0.2 • Published 7 years ago

check-test v0.0.2

Weekly downloads
43
License
-
Repository
-
Last release
7 years ago

check

“You better check yo self before you wreck yo self.” – Ice Cube


check is a JavaScript assertion library with a very small API and an expectation syntax inspired by the way a developer would investigate the behavior of an app using the browser’s console or the node REPL.

Example usage

var point = {
  x: 10,
  y: Math.exp(Math.PI) - Math.PI
};

check(point, function(point) {
  point.x === 10;
  point.y === 20;
});

Result

Error: Expected `point.y === 20`. Got `point.y`: 19.99909997918948.
0.0.2

7 years ago

0.0.1

7 years ago